Skip to content
Snippets Groups Projects
Commit 2709ceb1 authored by Alex Arnaud's avatar Alex Arnaud
Browse files

Dev #26120 - Fix a typo in sql syntax

parent 254e0d7e
4 merge requests!1132Hotline#29412 images des articles dans le resultat de recherche,!1120Master,!1118Dev #26120 typo3 import update,!1117Dev #26120 typo3 import update
......@@ -61,7 +61,7 @@ class Class_Import_Typo3_DB {
$query = 'select * from tt_news_cat where deleted=0';
if ($update_date)
$query .= 'and tstamp >= ' . $update_date;
$query .= ' and tstamp >= ' . $update_date;
return $this->t3db->fetchAll($query . ' order by uid ASC');
}
......@@ -71,7 +71,7 @@ class Class_Import_Typo3_DB {
$query = 'select * from tx_cal_category where deleted=0';
if ($update_date)
$query .= 'and tstamp >= ' . $update_date;
$query .= ' and tstamp >= ' . $update_date;
return $this->t3db->fetchAll($query . ' order by uid ASC');
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment