diff options
| -rw-r--r-- | admin/admin_topics.php | 4 | ||||
| -rw-r--r-- | admin/admin_types.php | 4 | ||||
| -rw-r--r-- | article_history.php | 2 | ||||
| -rw-r--r-- | articles_rss.php | 4 | ||||
| -rw-r--r-- | edit.php | 4 | ||||
| -rw-r--r-- | edit_topic.php | 4 | ||||
| -rw-r--r-- | index.php | 4 | ||||
| -rw-r--r-- | list.php | 4 | ||||
| -rw-r--r-- | list_topics.php | 4 | ||||
| -rw-r--r-- | print.php | 4 | ||||
| -rw-r--r-- | rankings.php | 4 | ||||
| -rw-r--r-- | read.php | 4 | ||||
| -rw-r--r-- | test/TestTikiArticle.php | 2 | ||||
| -rw-r--r-- | test/index.php | 2 |
14 files changed, 25 insertions, 25 deletions
diff --git a/admin/admin_topics.php b/admin/admin_topics.php index ef11d8e..5d99dc0 100644 --- a/admin/admin_topics.php +++ b/admin/admin_topics.php @@ -1,6 +1,6 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_articles/admin/admin_topics.php,v 1.8 2008/06/25 22:21:06 spiderr Exp $ -require_once( '../../bit_setup_inc.php' ); +// $Header: /cvsroot/bitweaver/_bit_articles/admin/admin_topics.php,v 1.9 2010/02/08 21:27:21 wjames5 Exp $ +require_once( '../../kernel/setup_inc.php' ); include_once( ARTICLES_PKG_PATH.'BitArticle.php' ); include_once( ARTICLES_PKG_PATH.'lookup_article_topic_inc.php' ); diff --git a/admin/admin_types.php b/admin/admin_types.php index 94caf68..ef858b3 100644 --- a/admin/admin_types.php +++ b/admin/admin_types.php @@ -1,7 +1,7 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_articles/admin/admin_types.php,v 1.10 2008/06/25 22:21:06 spiderr Exp $ +// $Header: /cvsroot/bitweaver/_bit_articles/admin/admin_types.php,v 1.11 2010/02/08 21:27:21 wjames5 Exp $ -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); require_once( ARTICLES_PKG_PATH.'BitArticle.php' ); require_once( ARTICLES_PKG_PATH.'BitArticleType.php' ); diff --git a/article_history.php b/article_history.php index 23a71d9..bfb29ea 100644 --- a/article_history.php +++ b/article_history.php @@ -16,7 +16,7 @@ /** * required setup */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); require_once( ARTICLES_PKG_PATH.'BitArticle.php' ); $gBitSystem->verifyPackage( 'articles' ); diff --git a/articles_rss.php b/articles_rss.php index 896db87..e8446d3 100644 --- a/articles_rss.php +++ b/articles_rss.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/articles_rss.php,v 1.24 2008/06/30 19:29:17 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/articles_rss.php,v 1.25 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -10,7 +10,7 @@ */ // ensure that we use absolute URLs everywhere $_REQUEST['uri_mode'] = TRUE; -require_once( "../bit_setup_inc.php" ); +require_once( "../kernel/setup_inc.php" ); $gBitSystem->verifyPackage( 'articles' ); $gBitSystem->verifyPackage( 'rss' ); @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/edit.php,v 1.49 2009/10/01 14:16:57 wjames5 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/edit.php,v 1.50 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -12,7 +12,7 @@ /** * Initialization */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); require_once( ARTICLES_PKG_PATH . 'BitArticle.php' ); // Is package installed and enabled diff --git a/edit_topic.php b/edit_topic.php index 2dcd3da..d4b524f 100644 --- a/edit_topic.php +++ b/edit_topic.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/edit_topic.php,v 1.6 2008/06/25 22:21:06 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/edit_topic.php,v 1.7 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -8,7 +8,7 @@ /** * Initialization */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); require_once( ARTICLES_PKG_PATH."BitArticle.php" ); include_once( ARTICLES_PKG_PATH."lookup_article_topic_inc.php" ); @@ -1,11 +1,11 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_articles/index.php,v 1.26 2009/10/01 14:16:57 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_articles/index.php,v 1.27 2010/02/08 21:27:21 wjames5 Exp $ // Copyright( c )2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See below for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. // Initialization -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); // Is package installed and enabled $gBitSystem->verifyPackage( 'articles' ); @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.24 2008/10/20 21:40:08 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.25 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -8,7 +8,7 @@ /** * Initialization */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); require_once( ARTICLES_PKG_PATH.'BitArticle.php' ); include_once( ARTICLES_PKG_PATH.'article_filter_inc.php' ); diff --git a/list_topics.php b/list_topics.php index 3420168..d1da13d 100644 --- a/list_topics.php +++ b/list_topics.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/list_topics.php,v 1.5 2008/06/25 22:21:06 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/list_topics.php,v 1.6 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -8,7 +8,7 @@ /** * Initialization */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); include_once( ARTICLES_PKG_PATH.'BitArticle.php' ); include_once( ARTICLES_PKG_PATH.'lookup_article_topic_inc.php' ); @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/print.php,v 1.6 2009/11/11 22:37:00 lsces Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/print.php,v 1.7 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -8,7 +8,7 @@ /** * Initialization */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); include_once( ARTICLES_PKG_PATH . 'art_lib.php' ); diff --git a/rankings.php b/rankings.php index e52545c..dcd1a87 100644 --- a/rankings.php +++ b/rankings.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/rankings.php,v 1.11 2008/06/25 22:21:06 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/rankings.php,v 1.12 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -8,7 +8,7 @@ /** * Initialization */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); include_once( LIBERTY_PKG_PATH . 'LibertyContent.php' ); include_once( ARTICLES_PKG_PATH . 'BitArticle.php' ); @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/read.php,v 1.27 2008/10/20 21:40:08 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/read.php,v 1.28 2010/02/08 21:27:21 wjames5 Exp $ * @package articles * @subpackage functions */ @@ -8,7 +8,7 @@ /** * Initialization */ -require_once( '../bit_setup_inc.php' ); +require_once( '../kernel/setup_inc.php' ); require_once( ARTICLES_PKG_PATH.'BitArticle.php' ); diff --git a/test/TestTikiArticle.php b/test/TestTikiArticle.php index 4f1d2ff..7efd5b0 100644 --- a/test/TestTikiArticle.php +++ b/test/TestTikiArticle.php @@ -1,5 +1,5 @@ <?php -require_once('../../bit_setup_inc.php'); +require_once('../../kernel/setup_inc.php'); require_once(ARTICLES_PKG_PATH.'BitArticle.php'); class TestBitArticle extends Test { diff --git a/test/index.php b/test/index.php index 676c174..8a4f33c 100644 --- a/test/index.php +++ b/test/index.php @@ -1,6 +1,6 @@ <?php -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); require_once( KERNEL_PKG_PATH.'test/index.php' ); ?> |
