mirror of
https://github.com/itflow-org/itflow
synced 2026-03-05 21:34:51 +00:00
Fixed an = oops
This commit is contained in:
@@ -77,7 +77,7 @@
|
|||||||
$user_id = $row['user_id'];
|
$user_id = $row['user_id'];
|
||||||
$user_name = $row['user_name'];
|
$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
|
<?php
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -79,7 +79,7 @@
|
|||||||
$user_id_select = $row['user_id'];
|
$user_id_select = $row['user_id'];
|
||||||
$user_name_select = $row['user_name'];
|
$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
|
<?php
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
$user_id_select = $row['user_id'];
|
$user_id_select = $row['user_id'];
|
||||||
$user_name_select = $row['user_name'];
|
$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
|
<?php
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user