diff options
author | rvelices <rv-github@modusoptimus.com> | 2013-06-21 05:04:57 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2013-06-21 05:04:57 +0000 |
commit | 9da3d7f92e53673cbffddbe44021a1b90b2163e7 (patch) | |
tree | d2e9aa779eaf2dd22f739a9f7004263dc5c1db1c /admin/themes/default/template | |
parent | 863bce7f13191aa40f3388f7cadc6c00eaf1aec4 (diff) |
bug 2858: Smarty3 fix php warnings, concat, used modifier on array
git-svn-id: http://piwigo.org/svn/trunk@23425 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template')
-rw-r--r-- | admin/themes/default/template/cat_modify.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/themes/default/template/cat_modify.tpl b/admin/themes/default/template/cat_modify.tpl index e953ea322..5174960e2 100644 --- a/admin/themes/default/template/cat_modify.tpl +++ b/admin/themes/default/template/cat_modify.tpl @@ -83,14 +83,14 @@ <p> <strong>{'Lock'|@translate}</strong> <br> - {html_radios name='visible' values='true,false'|@explode output='No,Yes'|@explode|translate selected=$CAT_VISIBLE} + {html_radios name='visible' values=['true','false'] output=['No'|translate,'Yes'|translate] selected=$CAT_VISIBLE} </p> {if isset($CAT_COMMENTABLE)} <p> <strong>{'Comments'|@translate}</strong> <br> - {html_radios name='commentable' values='false,true'|@explode output='No,Yes'|@explode|translate selected=$CAT_COMMENTABLE} + {html_radios name='commentable' values=['false','true'] output=['No'|translate,'Yes'|translate] selected=$CAT_COMMENTABLE} </p> {/if} |