diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2009-08-31 14:57:04 +0000 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2009-08-31 14:57:04 +0000 |
| commit | 139f1d35302fc675b5e972e55c62d36cbc42af5c (patch) | |
| tree | 9618453f34cafc260fbb26883f9a51d01bc072d2 /phpBB/includes | |
| parent | d7925595dc46c1d913dd722b2121d4552c20cb47 (diff) | |
| download | forums-139f1d35302fc675b5e972e55c62d36cbc42af5c.tar forums-139f1d35302fc675b5e972e55c62d36cbc42af5c.tar.gz forums-139f1d35302fc675b5e972e55c62d36cbc42af5c.tar.bz2 forums-139f1d35302fc675b5e972e55c62d36cbc42af5c.tar.xz forums-139f1d35302fc675b5e972e55c62d36cbc42af5c.zip | |
fix r10076 for #48615 - Ability to specify amount of time user is able to delete his last post in topic.
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10080 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/acp/acp_board.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php index 78ba5092a0..9f0bcf210f 100644 --- a/phpBB/includes/acp/acp_board.php +++ b/phpBB/includes/acp/acp_board.php @@ -177,6 +177,7 @@ class acp_board 'legend2' => 'POSTING', 'bump_type' => false, 'edit_time' => array('lang' => 'EDIT_TIME', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['MINUTES']), + 'delete_time' => array('lang' => 'DELETE_TIME', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['MINUTES']), 'display_last_edited' => array('lang' => 'DISPLAY_LAST_EDITED', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), 'flood_interval' => array('lang' => 'FLOOD_INTERVAL', 'validate' => 'int:0', 'type' => 'text:3:10', 'explain' => true, 'append' => ' ' . $user->lang['SECONDS']), 'bump_interval' => array('lang' => 'BUMP_INTERVAL', 'validate' => 'int:0', 'type' => 'custom', 'method' => 'bump_interval', 'explain' => true), |
