mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 09:52:29 +02:00
- in admin menu, status option for categories is not "permissions" but
"private or public" choice = different language item - get_cat_display_name changed : use $conf['level_separator'] to unify presentation - default values for category properties commentable, uploadable, status and visible (set in include/config.inc.php) used for category creation (admin/update, admin/remote_site, admin/cat_list) - use mass_inserts in admin/update for inserting new categories - only one query for counting the number of sub categories in admin/cat_list git-svn-id: http://piwigo.org/svn/trunk@642 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -103,11 +103,10 @@ foreach (array('comment','dir','site_id') as $nullable)
|
||||
// Navigation path
|
||||
$url = PHPWG_ROOT_PATH.'admin.php?page=cat_list&parent_id=';
|
||||
$navigation = '<a class="" href="'.add_session_id(PHPWG_ROOT_PATH.'admin.php?page=cat_list').'">';
|
||||
$navigation.= $lang['home'].'</a> <span style="font-size:15px">→</span>';
|
||||
$navigation.= $lang['home'].'</a>'.$conf['level_separator'];
|
||||
|
||||
$navigation.= get_cat_display_name_cache(
|
||||
$category['uppercats'],
|
||||
' <span style="font-size:15px">→</span>',
|
||||
$url);
|
||||
|
||||
$form_action = PHPWG_ROOT_PATH.'admin.php?page=cat_modify&cat_id='.$_GET['cat_id'];
|
||||
|
||||
Reference in New Issue
Block a user