diff options
| author | lsces <lester@lsces.co.uk> | 2026-03-26 16:34:12 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-03-26 16:34:12 +0000 |
| commit | d32e5922951694717136cc1bfd18210a0e041b38 (patch) | |
| tree | 588db2e9d2b8f1e85fc4d9b858f1930fb5f3bcec /edit_topic.php | |
| parent | c55dd36bb7020d57665578e2c2bdf619cb0d0e9b (diff) | |
| download | articles-d32e5922951694717136cc1bfd18210a0e041b38.tar.gz articles-d32e5922951694717136cc1bfd18210a0e041b38.tar.bz2 articles-d32e5922951694717136cc1bfd18210a0e041b38.zip | |
KernelTools Class added
Diffstat (limited to 'edit_topic.php')
| -rwxr-xr-x | edit_topic.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/edit_topic.php b/edit_topic.php index c1c1d36..3290f05 100755 --- a/edit_topic.php +++ b/edit_topic.php @@ -10,6 +10,7 @@ */ require_once '../kernel/includes/setup_inc.php'; use Bitweaver\Articles\BitArticle; +use Bitweaver\KernelTools; include_once( ARTICLES_PKG_INCLUDE_PATH.'lookup_article_topic_inc.php' ); @@ -30,7 +31,7 @@ $gBitSmarty->assign( 'topic_info', $gContent->mInfo); if( isset( $_REQUEST["fSubmitSaveTopic"] ) ) { $gContent->storeTopic( $_REQUEST ); $gContent->loadTopic(); - bit_redirect( ARTICLES_PKG_URL . "admin/admin_topics.php" ); + KernelTools::bit_redirect( ARTICLES_PKG_URL . "admin/admin_topics.php" ); } elseif( isset( $_REQUEST['fRemoveTopicImage'] ) ) { $gContent->removeTopicImage(); } |
