[CS-Project-svn_notify] SF.net SVN: cs-project:[983] trunk/1.2
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-09-21 02:55:24
|
Revision: 983 http://cs-project.svn.sourceforge.net/cs-project/?rev=983&view=rev Author: crazedsanity Date: 2009-09-21 02:55:16 +0000 (Mon, 21 Sep 2009) Log Message: ----------- Remove require_once(): handled by cs-content's __autoload.php. /includes/content.inc /includes/content/contacts/index.inc /includes/content/contacts/view.inc /lib/bbCodeParser.class.php Modified Paths: -------------- trunk/1.2/includes/content/contacts/index.inc trunk/1.2/includes/content/contacts/view.inc trunk/1.2/includes/content.inc trunk/1.2/lib/bbCodeParser.class.php Modified: trunk/1.2/includes/content/contacts/index.inc =================================================================== --- trunk/1.2/includes/content/contacts/index.inc 2009-09-21 02:47:34 UTC (rev 982) +++ trunk/1.2/includes/content/contacts/index.inc 2009-09-21 02:55:16 UTC (rev 983) @@ -10,8 +10,6 @@ * Last Updated: $Date$ */ -require_once(dirname(__FILE__) .'/../../../lib/contactClass.php'); - $contactObj = new contactClass($page->db); $page->allow_invalid_urls(TRUE); Modified: trunk/1.2/includes/content/contacts/view.inc =================================================================== --- trunk/1.2/includes/content/contacts/view.inc 2009-09-21 02:47:34 UTC (rev 982) +++ trunk/1.2/includes/content/contacts/view.inc 2009-09-21 02:55:16 UTC (rev 983) @@ -10,8 +10,6 @@ * Last Updated: $Date$ */ -require_once(dirname(__FILE__) .'/../../../lib/contactClass.php'); - $contactObj = new contactClass($page->db); $page->allow_invalid_urls(TRUE); Modified: trunk/1.2/includes/content.inc =================================================================== --- trunk/1.2/includes/content.inc 2009-09-21 02:47:34 UTC (rev 982) +++ trunk/1.2/includes/content.inc 2009-09-21 02:55:16 UTC (rev 983) @@ -8,9 +8,7 @@ * Last Updated:::::::: $Date$ */ -require_once(dirname(__FILE__) ."/../lib/cs-content/cs_tabs.class.php"); - $db = new cs_phpDB; $db->connect(get_config_db_params()); $page->db = $db; Modified: trunk/1.2/lib/bbCodeParser.class.php =================================================================== --- trunk/1.2/lib/bbCodeParser.class.php 2009-09-21 02:47:34 UTC (rev 982) +++ trunk/1.2/lib/bbCodeParser.class.php 2009-09-21 02:55:16 UTC (rev 983) @@ -18,8 +18,6 @@ * been converted. */ -require_once(dirname(__FILE__) .'/cs-content/cs_bbCodeParser.class.php'); - class bbCodeParser extends cs_bbCodeParser { /** Array containing all the codes & how to parse them. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |