aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2009-06-04 13:30:01 +0000
committerChris Smith <toonarmy@phpbb.com>2009-06-04 13:30:01 +0000
commita975f8454aea77f1e42332b8fb52e66a77415e76 (patch)
treef077e5d1fa8d2d71eeeee2dd43d34de797a73553 /phpBB
parent5478ef15d33eec696ded6a5402a329b77916597e (diff)
downloadforums-a975f8454aea77f1e42332b8fb52e66a77415e76.tar
forums-a975f8454aea77f1e42332b8fb52e66a77415e76.tar.gz
forums-a975f8454aea77f1e42332b8fb52e66a77415e76.tar.bz2
forums-a975f8454aea77f1e42332b8fb52e66a77415e76.tar.xz
forums-a975f8454aea77f1e42332b8fb52e66a77415e76.zip
Fix up and tidy :)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9532 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--[-rwxr-xr-x]phpBB/includes/captcha/captcha_factory.php8
-rw-r--r--[-rwxr-xr-x]phpBB/includes/captcha/captcha_gd_wave.php12
-rw-r--r--[-rwxr-xr-x]phpBB/includes/captcha/captcha_plugin.php6
-rw-r--r--[-rwxr-xr-x]phpBB/includes/captcha/plugins/captcha_abstract.php7
-rw-r--r--[-rwxr-xr-x]phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php14
-rw-r--r--[-rwxr-xr-x]phpBB/includes/captcha/plugins/phpbb_captcha_gd_wave_plugin.php4
-rw-r--r--[-rwxr-xr-x]phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php12
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php8
8 files changed, 41 insertions, 30 deletions
diff --git a/phpBB/includes/captcha/captcha_factory.php b/phpBB/includes/captcha/captcha_factory.php
index e6f56172ec..fbe615a043 100755..100644
--- a/phpBB/includes/captcha/captcha_factory.php
+++ b/phpBB/includes/captcha/captcha_factory.php
@@ -1,8 +1,8 @@
-<?
+<?php
/**
*
* @package VC
-* @version $Id: $
+* @version $Id$
* @copyright (c) 2008 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -89,4 +89,6 @@ class phpbb_captcha_factory
return $captchas;
}
-} \ No newline at end of file
+}
+
+?> \ No newline at end of file
diff --git a/phpBB/includes/captcha/captcha_gd_wave.php b/phpBB/includes/captcha/captcha_gd_wave.php
index 0356538a4d..41dfcdd9d4 100755..100644
--- a/phpBB/includes/captcha/captcha_gd_wave.php
+++ b/phpBB/includes/captcha/captcha_gd_wave.php
@@ -2,15 +2,15 @@
/**
*
* @package VC
-* @version $Id: captcha_gd.php,v 1.19 2007/01/26 16:07:43 acydburn Exp $
+* @version $Id$
* @copyright (c) 2006 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
-
-
-/**
-Wave3D CAPTCHA by Robert Hetzler
+
+
+/**
+* Wave3D CAPTCHA by Robert Hetzler
*/
class captcha
{
@@ -836,7 +836,7 @@ class captcha
),
)
);
- }
+ }
}
?> \ No newline at end of file
diff --git a/phpBB/includes/captcha/captcha_plugin.php b/phpBB/includes/captcha/captcha_plugin.php
index 08a149764c..7c601caa93 100755..100644
--- a/phpBB/includes/captcha/captcha_plugin.php
+++ b/phpBB/includes/captcha/captcha_plugin.php
@@ -1,4 +1,4 @@
-<?
+<?php
interface phpbb_captcha_plugin
{
@@ -94,4 +94,6 @@ interface phpbb_captcha_plugin
*/
function get_attempt_count();
-} \ No newline at end of file
+}
+
+?> \ No newline at end of file
diff --git a/phpBB/includes/captcha/plugins/captcha_abstract.php b/phpBB/includes/captcha/plugins/captcha_abstract.php
index f5c135dc74..f88d82b2a0 100755..100644
--- a/phpBB/includes/captcha/plugins/captcha_abstract.php
+++ b/phpBB/includes/captcha/plugins/captcha_abstract.php
@@ -1,9 +1,9 @@
-<?
+<?php
/**
*
* @package VC
-* @version $Id: $
-* @copyright (c) 2006 2008 phpBB Group
+* @version $Id$
+* @copyright (c) 2006, 2008 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
@@ -330,3 +330,4 @@ class phpbb_default_captcha
}
+?> \ No newline at end of file
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php
index 850794e133..5b3c09f32d 100755..100644
--- a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php
@@ -1,12 +1,13 @@
-<?
+<?php
/**
*
* @package VC
-* @version $Id: $
-* @copyright (c) 2006 2008 phpBB Group
+* @version $Id$
+* @copyright (c) 2006, 2008 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
+
/**
* @ignore
*/
@@ -20,18 +21,18 @@ if (!defined('IN_PHPBB'))
*/
if (!class_exists('phpbb_default_captcha'))
{
- include_once($phpbb_root_path . "includes/captcha/plugins/captcha_abstract." . $phpEx);
+ include($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
}
class phpbb_captcha_gd extends phpbb_default_captcha
{
-
function phpbb_captcha_gd()
{
global $phpbb_root_path, $phpEx;
+
if (!class_exists('captcha'))
{
- include_once($phpbb_root_path . "includes/captcha/captcha_gd." . $phpEx);
+ include($phpbb_root_path . 'includes/captcha/captcha_gd.' . $phpEx);
}
}
@@ -120,3 +121,4 @@ class phpbb_captcha_gd extends phpbb_default_captcha
}
}
+?> \ No newline at end of file
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_wave_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_wave_plugin.php
index 769867655c..38e5aabedd 100755..100644
--- a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_wave_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_wave_plugin.php
@@ -3,10 +3,11 @@
*
* @package VC
* @version $Id$
-* @copyright (c) 2006 2008 phpBB Group
+* @copyright (c) 2006, 2008 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
+
/**
* @ignore
*/
@@ -29,6 +30,7 @@ class phpbb_captcha_gd_wave extends phpbb_default_captcha
function phpbb_captcha_gd_wave()
{
global $phpbb_root_path, $phpEx;
+
if (!class_exists('captcha'))
{
include_once($phpbb_root_path . 'includes/captcha/captcha_gd_wave.' . $phpEx);
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php
index c5a32137d7..8df11bfe8a 100755..100644
--- a/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php
@@ -1,12 +1,13 @@
-<?
+<?php
/**
*
* @package VC
-* @version $Id: $
-* @copyright (c) 2006 2008 phpBB Group
+* @version $Id$
+* @copyright (c) 2006, 2008 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
+
/**
* @ignore
*/
@@ -20,7 +21,7 @@ if (!defined('IN_PHPBB'))
*/
if (!class_exists('phpbb_default_captcha'))
{
- include_once($phpbb_root_path . "includes/captcha/plugins/captcha_abstract." . $phpEx);
+ include_once($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
}
class phpbb_captcha_nogd extends phpbb_default_captcha
@@ -29,9 +30,10 @@ class phpbb_captcha_nogd extends phpbb_default_captcha
function phpbb_captcha_nogd()
{
global $phpbb_root_path, $phpEx;
+
if (!class_exists('captcha'))
{
- include_once($phpbb_root_path . "includes/captcha/captcha_non_gd." . $phpEx);
+ include_once($phpbb_root_path . 'includes/captcha/captcha_non_gd.' . $phpEx);
}
}
diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
index 7a3c406324..42ca25ae54 100644
--- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
@@ -1,9 +1,9 @@
-<?
+<?php
/**
*
* @package VC
-* @version $Id: $
-* @copyright (c) 2006 2008 phpBB Group
+* @version $Id$
+* @copyright (c) 2006, 2008 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
@@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
if (!class_exists('phpbb_default_captcha'))
{
// we need the classic captcha code for tracking solutions and attempts
- include_once($phpbb_root_path . "includes/captcha/plugins/captcha_abstract." . $phpEx);
+ include_once($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
}
class phpbb_recaptcha extends phpbb_default_captcha