[Phpbbproject-svn] SF.net SVN: phpbbproject: [273] trunk/phpbb3/root
phpBB download manager, mainly aimed at MOD authors
Status: Planning
Brought to you by:
lord_le_brand
From: <lor...@us...> - 2008-04-27 21:52:59
|
Revision: 273 http://phpbbproject.svn.sourceforge.net/phpbbproject/?rev=273&view=rev Author: lord_le_brand Date: 2008-04-27 14:53:02 -0700 (Sun, 27 Apr 2008) Log Message: ----------- Added IN_PHPBB and IN_PROJECT check to every file -_-' Modified Paths: -------------- trunk/phpbb3/root/includes/project/info/project_main.php trunk/phpbb3/root/includes/project/info/project_project.php trunk/phpbb3/root/includes/project/project_main.php trunk/phpbb3/root/includes/project/project_project.php trunk/phpbb3/root/includes/project/project_trackers.php trunk/phpbb3/root/includes/sources_project/constants.php trunk/phpbb3/root/includes/sources_project/create_project.php trunk/phpbb3/root/includes/sources_project/download_project.php trunk/phpbb3/root/includes/sources_project/extensions.php trunk/phpbb3/root/includes/sources_project/functions_create.php trunk/phpbb3/root/includes/sources_project/functions_project.php trunk/phpbb3/root/includes/sources_project/functions_remote_posting.php trunk/phpbb3/root/includes/sources_project/import_project.php trunk/phpbb3/root/includes/sources_project/project_parse.php trunk/phpbb3/root/language/en/mods/phpbbproject.php Modified: trunk/phpbb3/root/includes/project/info/project_main.php =================================================================== --- trunk/phpbb3/root/includes/project/info/project_main.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/project/info/project_main.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Main module * * @package phpbbproject Modified: trunk/phpbb3/root/includes/project/info/project_project.php =================================================================== --- trunk/phpbb3/root/includes/project/info/project_project.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/project/info/project_project.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Project module * * @package phpbbproject Modified: trunk/phpbb3/root/includes/project/project_main.php =================================================================== --- trunk/phpbb3/root/includes/project/project_main.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/project/project_main.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Main module * * @package phpbbproject Modified: trunk/phpbb3/root/includes/project/project_project.php =================================================================== --- trunk/phpbb3/root/includes/project/project_project.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/project/project_project.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Project module * * @package phpbbproject Modified: trunk/phpbb3/root/includes/project/project_trackers.php =================================================================== --- trunk/phpbb3/root/includes/project/project_trackers.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/project/project_trackers.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Trackers module * * @package phpbbproject Modified: trunk/phpbb3/root/includes/sources_project/constants.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/constants.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/constants.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,7 +9,13 @@ */ /** + * @ignore */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + // Install levels define('PROJECT_LEVEL_EASY', 1); define('PROJECT_LEVEL_INTERMEDIATE', 2); Modified: trunk/phpbb3/root/includes/sources_project/create_project.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/create_project.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/create_project.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Create Project base class * * @package create_project Modified: trunk/phpbb3/root/includes/sources_project/download_project.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/download_project.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/download_project.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Download class * * Handles packaging Modified: trunk/phpbb3/root/includes/sources_project/extensions.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/extensions.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/extensions.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * phpBB Project Auth extension * * @package phpbbproject Modified: trunk/phpbb3/root/includes/sources_project/functions_create.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/functions_create.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/functions_create.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Validate project title * * @param string $project_title Modified: trunk/phpbb3/root/includes/sources_project/functions_project.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/functions_project.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/functions_project.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Get the author_username * * @param integer $user_id Modified: trunk/phpbb3/root/includes/sources_project/functions_remote_posting.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/functions_remote_posting.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/functions_remote_posting.php 2008-04-27 21:53:02 UTC (rev 273) @@ -1,16 +1,17 @@ <?php /** -* -* @package phpbbproject -* @version $Id$ -* @copyright (c) 2007 phpbbmodders, 2008 phpBB Project Team -* @license http://opensource.org/licenses/gpl-license.php GNU Public License -* -*/ + * Functions remote posting + * + * @package phpbbproject + * @version $Id$ + * @copyright (c) 2007 phpbbmodders, 2008 phpBB Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + */ /** -*/ -if (!defined('IN_PHPBB')) + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) { exit; } Modified: trunk/phpbb3/root/includes/sources_project/import_project.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/import_project.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/import_project.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * Base import class * * @package create_project Modified: trunk/phpbb3/root/includes/sources_project/project_parse.php =================================================================== --- trunk/phpbb3/root/includes/sources_project/project_parse.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/includes/sources_project/project_parse.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,6 +9,14 @@ */ /** + * @ignore + */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + +/** * File parser * * @package phpbbproject Modified: trunk/phpbb3/root/language/en/mods/phpbbproject.php =================================================================== --- trunk/phpbb3/root/language/en/mods/phpbbproject.php 2008-04-27 14:01:00 UTC (rev 272) +++ trunk/phpbb3/root/language/en/mods/phpbbproject.php 2008-04-27 21:53:02 UTC (rev 273) @@ -9,7 +9,13 @@ */ /** + * @ignore */ +if (!defined('IN_PHPBB') || !defined('IN_PROJECT')) +{ + exit; +} + if (empty($lang) || !is_array($lang)) { $lang = array(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |