diff options
author | Joe7 <jozsef.rnagy@site.hu> | 2011-01-07 17:53:37 +0100 |
---|---|---|
committer | Joe7 <jozsef.rnagy@site.hu> | 2011-01-07 17:53:37 +0100 |
commit | e86e8b8bd1d828d81080c63f9a063254145115e4 (patch) | |
tree | c1eb8f6e195ca6fe4ad0964057abd52d94c26917 /modules/g2_import | |
parent | 5bfb7fb96a5dc2e0bc511c998a7c055b83b2915a (diff) |
Added missing spaces (manual merging from 0d36b97aca3b5ed53ea3ea398ce28b0f6198e577)
Diffstat (limited to 'modules/g2_import')
-rw-r--r-- | modules/g2_import/helpers/g2_import.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/g2_import/helpers/g2_import.php b/modules/g2_import/helpers/g2_import.php index c3d774ea..162aa67b 100644 --- a/modules/g2_import/helpers/g2_import.php +++ b/modules/g2_import/helpers/g2_import.php @@ -1155,7 +1155,7 @@ class g2_import_Core { "SELECT [GalleryComment::id] " . "FROM [GalleryComment] " . "WHERE [GalleryComment::publishStatus] = 0 " . // 0 == COMMENT_PUBLISH_STATUS_PUBLISHED - "AND [GalleryComment::id] > ?" . + "AND [GalleryComment::id] > ? " . "ORDER BY [GalleryComment::id] ASC", array($min_id), array("limit" => array("count" => 100)))); @@ -1175,7 +1175,7 @@ class g2_import_Core { $ids = array(); $results = g2($gallery->search( "SELECT DISTINCT([TagItemMap::itemId]) FROM [TagItemMap] " . - "WHERE [TagItemMap::itemId] > ?" . + "WHERE [TagItemMap::itemId] > ? " . "ORDER BY [TagItemMap::itemId] ASC", array($min_id), array("limit" => array("count" => 100)))); @@ -1196,7 +1196,7 @@ class g2_import_Core { $results = g2($gallery->search( "SELECT [GalleryUser::id] " . "FROM [GalleryUser] " . - "WHERE [GalleryUser::id] > ?" . + "WHERE [GalleryUser::id] > ? " . "ORDER BY [GalleryUser::id] ASC", array($min_id), array("limit" => array("count" => 100)))); @@ -1217,7 +1217,7 @@ class g2_import_Core { $results = g2($gallery->search( "SELECT [GalleryGroup::id] " . "FROM [GalleryGroup] " . - "WHERE [GalleryGroup::id] > ?" . + "WHERE [GalleryGroup::id] > ? " . "ORDER BY [GalleryGroup::id] ASC", array($min_id), array("limit" => array("count" => 100)))); |