From 9551bfbc5236aed8af8ed3fe6d6f4631d630bfbc Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 5 May 2003 22:48:17 +0000 Subject: email topic, minor other changes, removed updating of parent forums upon posting (handled by functions_display) git-svn-id: file:///svn/phpbb/trunk@3980 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'phpBB/includes/functions.php') diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 5802d4ab5a..1e72f42fc4 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -964,6 +964,11 @@ function login_forum_box(&$forum_data) { global $db, $config, $user, $template, $phpEx; + //TODO + if ($forum_data['parent_id']) + { + } + $sql = 'SELECT * FROM phpbb_forum_access WHERE forum_id = ' . $forum_data['forum_id'] . ' @@ -1008,16 +1013,10 @@ function msg_handler($errno, $msg_text, $errfile, $errline) switch ($errno) { case E_WARNING: - if (defined('DEBUG_EXTRA')) - { -// echo "PHP Warning on line $errline in $errfile :: $msg_text
"; - } - break; - case E_NOTICE: if (defined('DEBUG_EXTRA')) { - echo "PHP Notice on line $errline in $errfile :: $msg_text
"; +// echo "PHP Notice on line $errline in $errfile :: $msg_text
"; } break; -- cgit v1.2.1