Created
July 29, 2014 18:23
-
-
Save Remo/ebfa37aa1ef8686fb053 to your computer and use it in GitHub Desktop.
concrete5 - change sort order in seo bulk tool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* /controllers/dashboard/system/seo/bulk_seo_tool.php */ | |
defined('C5_EXECUTE') or die('Access Denied.'); | |
class DashboardSystemSeoBulkSeoToolController extends Concrete5_Controller_Dashboard_System_Seo_BulkSeoTool { | |
public function getRequestedSearchResults() { | |
$searchResult = parent::getRequestedSearchResults(); | |
$searchResult->sortByCollectionIDAscending(); | |
return $searchResult; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment