fixed wrong paranthesis in media_upload.tpl

This commit is contained in:
Ian 2012-10-17 15:00:08 +03:00
parent 71ca3cd6de
commit 8a42ed74c4

View File

@ -227,7 +227,7 @@ function fillInput(source, target) {ldelim}
<td><select id="target_directory_1" name="serendipity[target_directory][1]">
<option value="">{$CONST.BASE_DIRECTORY}</option>
{foreach from=$media.folders item="folder"}
<option {if $media.only_path == $folder.relpath}selected="selected"{/if} value="{$folder.relpath}">{'&nbsp;'|str_repeat:)$folder.depth*2)}{$folder.name}</option>
<option {if $media.only_path == $folder.relpath}selected="selected"{/if} value="{$folder.relpath}">{'&nbsp;'|str_repeat:($folder.depth*2)}{$folder.name}</option>
{/foreach}
</select>
</td>