removed tpl {continue} spaces
This commit is contained in:
parent
85690d6411
commit
4bc7f98285
@ -122,9 +122,7 @@
|
||||
<option value="0" {if $cid == 0} selected="selected" {/if}>[ {$CONST.NO_CATEGORY} ]</option>
|
||||
{foreach $categories as $cat}
|
||||
{* We can't be our own parent, the universe will collapse *}
|
||||
{if $cat.categoryid == $cid}
|
||||
{continue}
|
||||
{/if}
|
||||
{if $cat.categoryid == $cid}{continue}{/if}
|
||||
<option value="{$cat.categoryid}" {if $this_cat.parentid == $cat.categoryid} selected="selected"{/if} >
|
||||
{for $i=1 to $cat.depth} {/for} $cat.category_name
|
||||
</option>
|
||||
|
@ -17,7 +17,7 @@
|
||||
<option value="">--</option>
|
||||
{if is_array($users)}
|
||||
{foreach $users AS $user}
|
||||
{if isset($user.artcount) && $user.artcount < 1} {continue} {/if}
|
||||
{if isset($user.artcount) && $user.artcount < 1}{continue}{/if}
|
||||
<option value="{$user.authorid}" {(isset($get.filter.author) && ($get.filter.author == $user.authorid)) ? 'selected="selected"' : ''}>{$user.realname|escape}</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
@ -105,9 +105,7 @@
|
||||
<input type="hidden" name="serendipity[adminAction]" value="multidelete" />
|
||||
|
||||
{foreach $entries as $entry}
|
||||
{if ($entry@index > $perPage)}
|
||||
{continue}
|
||||
{/if}
|
||||
{if ($entry@index > $perPage)}{continue}{/if}
|
||||
|
||||
<div class="serendipity_admin_list_item serendipity_admin_list_item_{($entry@index % 2) ? 'even' : 'uneven'}">
|
||||
|
||||
|
@ -94,9 +94,7 @@
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
{foreach $perms as $perm}
|
||||
{if {{$perm@key}|truncate:"2":""} == "f_"}
|
||||
{continue}
|
||||
{/if}
|
||||
{if {{$perm@key}|truncate:"2":""} == "f_"}{continue}{/if}
|
||||
|
||||
{if !isset($section)}
|
||||
{$section=$perm@key}
|
||||
|
@ -81,12 +81,8 @@
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
{if !empty($only_group)}
|
||||
{continue}
|
||||
{/if}
|
||||
{elseif ! empty($only_group) && $pluggroup != $only_group}
|
||||
{continue}
|
||||
{else}
|
||||
{if !empty($only_group)}{continue}{/if}
|
||||
{elseif !empty($only_group) && $pluggroup != $only_group}{continue}{else}
|
||||
<tr>
|
||||
<td colspan="2" class="serendipity_pluginlist_section"><strong>{$groupnames.{$available_group}}</strong></td>
|
||||
</tr>
|
||||
|
@ -35,9 +35,7 @@
|
||||
<h3>{$CONST.SELECT_TEMPLATE}</h3>
|
||||
|
||||
{foreach $templates as $template=>$info}
|
||||
{if $info.info.engine == "yes"}
|
||||
{continue}
|
||||
{/if}
|
||||
{if $info.info.engine == "yes"}{continue}{/if}
|
||||
{if !empty($template)}
|
||||
{if $template@iteration is even}
|
||||
<div class="serendipity_admin_list_item serendipity_admin_list_item_even">
|
||||
|
Loading…
x
Reference in New Issue
Block a user