aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-05-05 22:48:17 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-05-05 22:48:17 +0000
commit9551bfbc5236aed8af8ed3fe6d6f4631d630bfbc (patch)
tree595afed6d91efaf07647049d7f7f04bd6ab96377 /phpBB/includes/functions.php
parentbecf5f5199df27f82c7dac0954211d21f5a15ba7 (diff)
downloadforums-9551bfbc5236aed8af8ed3fe6d6f4631d630bfbc.tar
forums-9551bfbc5236aed8af8ed3fe6d6f4631d630bfbc.tar.gz
forums-9551bfbc5236aed8af8ed3fe6d6f4631d630bfbc.tar.bz2
forums-9551bfbc5236aed8af8ed3fe6d6f4631d630bfbc.tar.xz
forums-9551bfbc5236aed8af8ed3fe6d6f4631d630bfbc.zip
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
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php13
1 files changed, 6 insertions, 7 deletions
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 <b>$errline</b> in <b>$errfile</b> :: <b>$msg_text</b><br />";
- }
- break;
-
case E_NOTICE:
if (defined('DEBUG_EXTRA'))
{
- echo "PHP Notice on line <b>$errline</b> in <b>$errfile</b> :: <b>$msg_text</b><br />";
+// echo "PHP Notice on line <b>$errline</b> in <b>$errfile</b> :: <b>$msg_text</b><br />";
}
break;