[-] BO : Improvement made #PSCFI-1387 - The hooks list is reorder by title and technical name is displayed

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14246 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fSerny
2012-03-26 07:36:22 +00:00
parent b302a4d83c
commit 54aa99007e
4 changed files with 6 additions and 5 deletions
+2 -1
View File
@@ -92,7 +92,8 @@ class HookCore extends ObjectModel
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
SELECT * FROM `'._DB_PREFIX_.'hook` h
'.($position ? 'WHERE h.`position` = 1' : '')
'.($position ? 'WHERE h.`position` = 1' : '').'
ORDER BY `title`'
);
}