Null out the order by clause

This commit is contained in:
Simon Welsh 2015-03-12 21:38:22 +11:00
parent 6d530af1a2
commit 91a543ea63
1 changed files with 2 additions and 1 deletions

View File

@ -286,6 +286,7 @@ class GoogleSitemap {
$lastEdited = $instances
->limit($countPerFile, ($i - 1) * $countPerFile)
->sort(array())
->max('LastEdited');
$lastModified = ($lastEdited) ? date('Y-m-d', strtotime($lastEdited)) : date('Y-m-d');
@ -400,4 +401,4 @@ class GoogleSitemap {
public static function enabled() {
return (Config::inst()->get('GoogleSitemap', 'enabled', Config::INHERITED));
}
}
}