remove max photo width/height from user profile because not used anymore

git-svn-id: http://piwigo.org/svn/trunk@12877 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices 2012-01-12 05:57:43 +00:00
commit 65590487d4
6 changed files with 5 additions and 71 deletions

View file

@ -81,18 +81,6 @@
<span class="property">{'Show number of hits'|@translate}</span>
{html_radios name='show_nb_hits' options=$radio_options selected=$NB_HITS}
</li>
<li>
<span class="property">
<label for="maxwidth">{'Maximum photo width'|@translate}</label>
</span>
<input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{$MAXWIDTH}">
</li>
<li>
<span class="property">
<label for="maxheight">{'Maximum photo height'|@translate}</label>
</span>
<input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{$MAXHEIGHT}">
</li>
</ul>
</fieldset>

View file

@ -254,30 +254,6 @@
</td>
</tr>
<tr>
<td>{'Maximum photo width'|@translate}</td>
<td>
<label><input type="radio" name="maxwidth_action" value="leave" checked="checked"> {'leave'|@translate}</label>
<label><input type="radio" name="maxwidth_action" value="unset"> {'unset'|@translate}</label>
<label><input type="radio" name="maxwidth_action" value="set" id="maxwidth_action_set"> {'set to'|@translate}</label>
<input onmousedown="document.getElementById('maxwidth_action_set').checked = true;"
type="text" size="4" maxlength="4" name="maxwidth" value="{$MAXWIDTH}">
</td>
</tr>
<tr>
<td>{'Maximum photo height'|@translate}</td>
<td>
<label><input type="radio" name="maxheight_action" value="leave" checked="checked"> {'leave'|@translate}</label>
<label><input type="radio" name="maxheight_action" value="unset"> {'unset'|@translate}</label>
<label><input type="radio" name="maxheight_action" value="set" id="maxheight_action_set"> {'set to'|@translate}</label>
<input onmousedown="document.getElementById('maxheight_action_set').checked = true;"
type="text" size="4" maxlength="4" name="maxheight" value="{$MAXHEIGHT}">
</td>
</tr>
</table>
</fieldset>