sql string unquoted

This commit is contained in:
friendica 2014-07-22 04:37:51 -07:00
parent dd215607f3
commit c061cc0955
2 changed files with 2 additions and 2 deletions

View File

@ -329,7 +329,7 @@ function network_content(&$a, $update = 0, $load = false) {
// which are both ITEM_UNSEEN and have "changed" since that time. Cross fingers...
if($update && $_SESSION['loadtime'])
$simple_update .= " and item.changed > " . datetime_convert('UTC','UTC',$_SESSION['loadtime']);
$simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ";
if($load)
$simple_update = '';

View File

@ -1 +1 @@
2014-07-21.743
2014-07-22.744