From 9da3d7f92e53673cbffddbe44021a1b90b2163e7 Mon Sep 17 00:00:00 2001 From: rvelices Date: Fri, 21 Jun 2013 05:04:57 +0000 Subject: 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 --- admin/themes/default/template/cat_modify.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'admin') 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 @@

{'Lock'|@translate}
- {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}

{if isset($CAT_COMMENTABLE)}

{'Comments'|@translate}
- {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}

{/if} -- cgit v1.2.3