1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Update of pruning to add admin interface, and change error_die's to message_die's

git-svn-id: file:///svn/phpbb/trunk@683 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
the_systech
2001-07-17 13:26:36 +00:00
parent 58d05e84fb
commit 931fd9d642
5 changed files with 275 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
<h1>Forum Pruning</h1>
<h2>Forum: {FORUM_NAME}</h2>
<div align="center"><table cellspacing="1" cellpadding="4" border="0">
<tr><form method="post" action="{S_FORUMPRUNE_ACTION}">{S_HIDDEN_VARS}
<td>{S_PRUNE_DATA}</td>
</tr>
<tr>
<td align="center"><input type="submit" name="submit" value="Prune"></td>
</tr>
<tr>
<td><i>Note: This will not prune announcements or sticky topics, these must be removed manually.</i></td>
</tr>
</form>
</table></div>
<br clear="all">

View File

@@ -0,0 +1,19 @@
<h1>Forum Pruning</h1>
<p>Here are the results from your forum pruning:</p>
<div align="center"><table cellspacing="1" cellpadding="4" border="0">
<tr>
<th>FORUM NAME</th>
<th>TOPICS PRUNED</th>
<th>POSTS PRUNED</th>
</tr>
<!-- BEGIN prune_results -->
<tr>
<td class="row1" align="center">{prune_results.FORUM_NAME}</td>
<td class="row1" align="center">{prune_results.FORUM_TOPICS}</td>
<td class="row1" align="center">{prune_results.FORUM_POSTS}</td>
</tr>
<!-- END prune_results -->
</table></div>
<br clear="all">

View File

@@ -0,0 +1,13 @@
<div align="center"><h1>Forum Pruning</h1>
<table cellspacing="1" cellpadding="4" border="0">
<tr>
<th bgcolor="#CCCCCC">Select a Forum</th>
</tr>
<tr><form method="get" action="{S_FORUMPRUNE_ACTION}">
<td class="row1" align="center">{S_FORUMS_SELECT}&nbsp;&nbsp;<input type="submit" value="Select">&nbsp;</td>
</form></tr>
</table></div>
<br clear="all">