mirror of https://github.com/itflow-org/itflow
Fixed an = oops
This commit is contained in:
parent
e16c5fe8ba
commit
7deea2ecac
|
|
@ -77,7 +77,7 @@
|
|||
$user_id = $row['user_id'];
|
||||
$user_name = $row['user_name'];
|
||||
?>
|
||||
<option <?php if($session_user_id = $user_id){ echo "selected"; } ?> value="<?php echo $user_id; ?>"><?php echo $user_name; ?></option>
|
||||
<option <?php if($session_user_id == $user_id){ echo "selected"; } ?> value="<?php echo $user_id; ?>"><?php echo $user_name; ?></option>
|
||||
|
||||
<?php
|
||||
}
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@
|
|||
$user_id_select = $row['user_id'];
|
||||
$user_name_select = $row['user_name'];
|
||||
?>
|
||||
<option <?php if($trip_user_id = $user_id_select){ echo "selected"; } ?> value="<?php echo $user_id_select; ?>"><?php echo $user_name_select; ?></option>
|
||||
<option <?php if($trip_user_id == $user_id_select){ echo "selected"; } ?> value="<?php echo $user_id_select; ?>"><?php echo $user_name_select; ?></option>
|
||||
|
||||
<?php
|
||||
}
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
$user_id_select = $row['user_id'];
|
||||
$user_name_select = $row['user_name'];
|
||||
?>
|
||||
<option <?php if($trip_user_id = $user_id_select){ echo "selected"; } ?> value="<?php echo $user_id_select; ?>"><?php echo $user_name_select; ?></option>
|
||||
<option <?php if($trip_user_id == $user_id_select){ echo "selected"; } ?> value="<?php echo $user_id_select; ?>"><?php echo $user_name_select; ?></option>
|
||||
|
||||
<?php
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue