1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-22 20:26:25 +02:00

Category and module lang name changes + show ban information when selecting entries to unban

git-svn-id: file:///svn/phpbb/trunk@3367 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-01-27 18:16:22 +00:00
parent 47cc239b1d
commit 0c26de16eb
19 changed files with 328 additions and 279 deletions

View File

@@ -26,7 +26,7 @@ if (!empty($setmodules))
return;
}
$module['Users']['Prune_users'] = basename(__FILE__) . $SID;
$module['USER']['PRUNE_USERS'] = basename(__FILE__) . $SID;
return;
}
@@ -66,13 +66,13 @@ if (isset($_POST['prune']))
?>
<h1><?php echo $user->lang['Prune_users']; ?></h1>
<h1><?php echo $user->lang['PRUNE_USERS']; ?></h1>
<p><?php echo $user->lang['Prune_users_explain']; ?></p>
<p><?php echo $user->lang['PRUNE_USERS_EXPLAIN']; ?></p>
<?php
page_message($user->lang['Confirm'], $l_message, false);
page_message($user->lang['CONFIRM'], $l_message, false);
page_footer();
}