aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2007-10-03 15:37:02 +0000
committerHenry Sudhof <kellanved@phpbb.com>2007-10-03 15:37:02 +0000
commit0ff21e4614aa625bc5d2f32fcbad9658287f81de (patch)
tree89f018e1f844ad38dd6f0efa9ee0e20aa1aad0a4 /phpBB
parentb154edd6a56c7dfde3434b6c30422c4f33b605c3 (diff)
downloadforums-0ff21e4614aa625bc5d2f32fcbad9658287f81de.tar
forums-0ff21e4614aa625bc5d2f32fcbad9658287f81de.tar.gz
forums-0ff21e4614aa625bc5d2f32fcbad9658287f81de.tar.bz2
forums-0ff21e4614aa625bc5d2f32fcbad9658287f81de.tar.xz
forums-0ff21e4614aa625bc5d2f32fcbad9658287f81de.zip
and 16
git-svn-id: file:///svn/phpbb/trunk@8124 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rwxr-xr-xphpBB/includes/mcp/mcp_notes.php2
-rwxr-xr-xphpBB/includes/mcp/mcp_warn.php2
-rw-r--r--phpBB/includes/ucp/ucp_main.php2
-rw-r--r--phpBB/includes/ucp/ucp_pm_options.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/mcp/mcp_notes.php b/phpBB/includes/mcp/mcp_notes.php
index 3519e86424..a1e230c21c 100755
--- a/phpBB/includes/mcp/mcp_notes.php
+++ b/phpBB/includes/mcp/mcp_notes.php
@@ -147,7 +147,7 @@ class mcp_notes
if ($usernote && $action == 'add_feedback')
{
- if(check_form_key('mcp_notes'))
+ if (check_form_key('mcp_notes'))
{
add_log('admin', 'LOG_USER_FEEDBACK', $userrow['username']);
add_log('mod', 0, 0, 'LOG_USER_FEEDBACK', $userrow['username']);
diff --git a/phpBB/includes/mcp/mcp_warn.php b/phpBB/includes/mcp/mcp_warn.php
index a997d01ca5..96bc17bce3 100755
--- a/phpBB/includes/mcp/mcp_warn.php
+++ b/phpBB/includes/mcp/mcp_warn.php
@@ -345,7 +345,7 @@ class mcp_warn
if ($warning && $action == 'add_warning')
{
- if(check_form_key('mcp_warn'))
+ if (check_form_key('mcp_warn'))
{
add_warning($user_row, $warning, $notify);
$msg = $user->lang['USER_WARNING_ADDED'];
diff --git a/phpBB/includes/ucp/ucp_main.php b/phpBB/includes/ucp/ucp_main.php
index 6f0db86bf6..a8f31d2e72 100644
--- a/phpBB/includes/ucp/ucp_main.php
+++ b/phpBB/includes/ucp/ucp_main.php
@@ -200,7 +200,7 @@ class ucp_main
if ($unwatch)
{
- if(check_form_key('ucp_front_subscribed'))
+ if (check_form_key('ucp_front_subscribed'))
{
$forums = array_keys(request_var('f', array(0 => 0)));
$topics = array_keys(request_var('t', array(0 => 0)));
diff --git a/phpBB/includes/ucp/ucp_pm_options.php b/phpBB/includes/ucp/ucp_pm_options.php
index 429c9e0caa..5a7f4b1e40 100644
--- a/phpBB/includes/ucp/ucp_pm_options.php
+++ b/phpBB/includes/ucp/ucp_pm_options.php
@@ -268,7 +268,7 @@ function message_options($id, $mode, $global_privmsgs_rules, $global_rule_condit
// Add Rule
if (isset($_POST['add_rule']))
{
- if(check_form_key('ucp_pm_options'))
+ if (check_form_key('ucp_pm_options'))
{
$check_option = request_var('check_option', 0);
$rule_option = request_var('rule_option', 0);