diff options
author | mistic100 <mistic@piwigo.org> | 2011-10-17 17:25:50 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-10-17 17:25:50 +0000 |
commit | 68d79989cbb989cea8747e46d8a71d6fc7f6f9dd (patch) | |
tree | 24e8db19becd3ccbb4e557f00a169fc177079513 /admin/themes/default/template | |
parent | 216cccdac4241d4b398334745c06e04bdf762d62 (diff) |
Merged r12470 from trunk: bug:2476 Increase the maximum display of thumbnails, now limited to 3 digits (999 thumbnails)
git-svn-id: http://piwigo.org/svn/branches/2.3@12471 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/profile_content.tpl | 2 | ||||
-rw-r--r-- | admin/themes/default/template/user_list.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/admin/themes/default/template/profile_content.tpl b/admin/themes/default/template/profile_content.tpl index e7c209222..5109b84c8 100644 --- a/admin/themes/default/template/profile_content.tpl +++ b/admin/themes/default/template/profile_content.tpl @@ -47,7 +47,7 @@ <span class="property"> <label for="nb_image_page">{'Number of photos per page'|@translate}</label> </span> - <input type="text" size="3" maxlength="2" name="nb_image_page" id="nb_image_page" value="{$NB_IMAGE_PAGE}"> + <input type="text" size="4" maxlength="3" name="nb_image_page" id="nb_image_page" value="{$NB_IMAGE_PAGE}"> </li> {if not $SPECIAL_USER} <li> diff --git a/admin/themes/default/template/user_list.tpl b/admin/themes/default/template/user_list.tpl index 95214815b..87d6a5710 100644 --- a/admin/themes/default/template/user_list.tpl +++ b/admin/themes/default/template/user_list.tpl @@ -188,7 +188,7 @@ <label><input type="radio" name="nb_image_page_action" value="leave" checked="checked"> {'leave'|@translate}</label> <label><input type="radio" name="nb_image_page_action" value="set" id="nb_image_page_action_set"> {'set to'|@translate}</label> <input onmousedown="document.getElementById('nb_image_page_action_set').checked = true;" - size="3" maxlength="2" type="text" name="nb_image_page" value="{$NB_IMAGE_PAGE}"> + size="4" maxlength="3" type="text" name="nb_image_page" value="{$NB_IMAGE_PAGE}"> </td> </tr> |