diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-06-04 11:11:48 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-06-04 11:11:48 +0000 |
commit | d46b1392b7ff3676978125b415389f99a98c2370 (patch) | |
tree | abebd9900473b949238ed44a284acce0f4b9ef66 /phpBB | |
parent | 3116f279a16dd8f927c0cb9e2e605afa5a9dfdd7 (diff) | |
download | forums-d46b1392b7ff3676978125b415389f99a98c2370.tar forums-d46b1392b7ff3676978125b415389f99a98c2370.tar.gz forums-d46b1392b7ff3676978125b415389f99a98c2370.tar.bz2 forums-d46b1392b7ff3676978125b415389f99a98c2370.tar.xz forums-d46b1392b7ff3676978125b415389f99a98c2370.zip |
initialize $pre_fill
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8589 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/mcp/mcp_ban.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_ban.php b/phpBB/includes/mcp/mcp_ban.php index 5cb1d72a72..d9f5eb8f22 100644 --- a/phpBB/includes/mcp/mcp_ban.php +++ b/phpBB/includes/mcp/mcp_ban.php @@ -159,7 +159,7 @@ class mcp_ban // As a "service" we will check if any post id is specified and populate the username of the poster id if given $post_id = request_var('p', 0); $user_id = request_var('u', 0); - $username = false; + $username = $pre_fill = false; if ($user_id && $user_id <> ANONYMOUS) { |