how did i miss this?!?
This commit is contained in:
parent
bae52a642b
commit
6513d8a14c
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ $stmt->bindParam(1, $userid, PDO::PARAM_INT);
|
|||
$stmt->execute();
|
||||
$shoppees = array();
|
||||
while ($row = $stmt->fetch()) {
|
||||
$row['list_stamp'] = ($row['list_stamp == 0'] ? '-' : strftime($opt["date_format"], strtotime($row['list_stamp'])));
|
||||
$row['list_stamp'] = ($row['list_stamp'] == 0 ? '-' : strftime($opt["date_format"], strtotime($row['list_stamp'])));
|
||||
$shoppees[] = $row;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue