aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-03-21 13:29:53 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-03-21 13:29:53 +0000
commit21f720a265958bae1229515e546f3bf9a831fad8 (patch)
tree58fa7248ab43e3cc8d286a9064e6518cdcef44a9 /phpBB
parentc89f896c278bfec4efa3e6859952f9918e2e0f3f (diff)
downloadforums-21f720a265958bae1229515e546f3bf9a831fad8.tar
forums-21f720a265958bae1229515e546f3bf9a831fad8.tar.gz
forums-21f720a265958bae1229515e546f3bf9a831fad8.tar.bz2
forums-21f720a265958bae1229515e546f3bf9a831fad8.tar.xz
forums-21f720a265958bae1229515e546f3bf9a831fad8.zip
Fix missing global var causing failure of include for username validation
git-svn-id: file:///svn/phpbb/trunk@2388 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions_post.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_post.php b/phpBB/includes/functions_post.php
index 22a3ea7494..3cc7669755 100644
--- a/phpBB/includes/functions_post.php
+++ b/phpBB/includes/functions_post.php
@@ -142,7 +142,7 @@ function unprepare_message($message)
//
function prepare_post(&$mode, &$post_data, &$bbcode_on, &$html_on, &$smilies_on, &$error_msg, &$username, &$bbcode_uid, &$subject, &$message, &$poll_title, &$poll_options, &$poll_length)
{
- global $board_config, $userdata, $lang, $phpEx;
+ global $board_config, $userdata, $lang, $phpEx, $phpbb_root_path;
// Check username
if ( !empty($username) )