mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
Feature_1255 :
- single quotes in queries - start using $conf['dblayer'] git-svn-id: http://piwigo.org/svn/trunk@4385 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -242,9 +242,9 @@ $template->assign(
|
||||
'status_values' => array('public','private'),
|
||||
|
||||
'CAT_STATUS' => $category['status'],
|
||||
'CAT_VISIBLE' => $category['visible'],
|
||||
'CAT_COMMENTABLE' => $category['commentable'],
|
||||
'CAT_UPLOADABLE' => $category['uploadable'],
|
||||
'CAT_VISIBLE' => boolean_to_string($category['visible']),
|
||||
'CAT_COMMENTABLE' => boolean_to_string($category['commentable']),
|
||||
'CAT_UPLOADABLE' => boolean_to_string($category['uploadable']),
|
||||
|
||||
'IMG_ORDER_DEFAULT' => empty($category['image_order']) ?
|
||||
'checked="checked"' : '',
|
||||
|
||||
Reference in New Issue
Block a user