mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 15:57:45 +02:00
[feature/soft-delete] Fix "Mark all" and "Unmark all" links on topic list
PHPBB3-9657
This commit is contained in:
@@ -107,13 +107,19 @@
|
|||||||
<!-- IF .postrow -->
|
<!-- IF .postrow -->
|
||||||
<fieldset class="display-actions">
|
<fieldset class="display-actions">
|
||||||
<!-- IF S_RESTORE -->
|
<!-- IF S_RESTORE -->
|
||||||
<input class="button2" type="submit" name="action[disapprove]" value="{L_DELETE}" />
|
<input class="button2" type="submit" name="action[delete]" value="{L_DELETE}" />
|
||||||
<input class="button1" type="submit" name="action[restore]" value="{L_RESTORE}" />
|
<input class="button1" type="submit" name="action[restore]" value="{L_RESTORE}" />
|
||||||
<!-- ELSE -->
|
<!-- ELSE -->
|
||||||
<input class="button2" type="submit" name="action[disapprove]" value="{L_DISAPPROVE}" />
|
<input class="button2" type="submit" name="action[disapprove]" value="{L_DISAPPROVE}" />
|
||||||
<input class="button1" type="submit" name="action[approve]" value="{L_APPROVE}" />
|
<input class="button1" type="submit" name="action[approve]" value="{L_APPROVE}" />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
<div><a href="#" onclick="marklist('mcp', 'post_id_list', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp', 'post_id_list', false); return false;">{L_UNMARK_ALL}</a></div>
|
<div>
|
||||||
|
<!-- IF S_TOPICS -->
|
||||||
|
<a href="#" onclick="marklist('mcp', 'topic_id_list', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp', 'topic_id_list', false); return false;">{L_UNMARK_ALL}</a>
|
||||||
|
<!-- ELSE -->
|
||||||
|
<a href="#" onclick="marklist('mcp', 'post_id_list', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp', 'post_id_list', false); return false;">{L_UNMARK_ALL}</a>
|
||||||
|
<!-- ENDIF -->
|
||||||
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</form>
|
</form>
|
||||||
|
Reference in New Issue
Block a user