summaryrefslogtreecommitdiff
path: root/edit.php
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:17:39 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:17:39 -0500
commit9c5d92efbb700277c12c86b50b9527c3aa762bfb (patch)
tree88021e9833da96ce2fdc7295f47d340dea2270c1 /edit.php
parent8ac5971140c734bc524dda5a2f18e0c9d73dc80c (diff)
downloadtags-9c5d92efbb700277c12c86b50b9527c3aa762bfb.tar.gz
tags-9c5d92efbb700277c12c86b50b9527c3aa762bfb.tar.bz2
tags-9c5d92efbb700277c12c86b50b9527c3aa762bfb.zip
move _inc and _lib to includes/ and use PKG_INCLUDE_PATH constants
Diffstat (limited to 'edit.php')
-rw-r--r--edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit.php b/edit.php
index 2c43e9e..337c200 100644
--- a/edit.php
+++ b/edit.php
@@ -13,7 +13,7 @@
* required setup
*/
require_once( "../kernel/setup_inc.php" );
-require_once( TAGS_PKG_PATH."LibertyTag.php" );
+require_once( TAGS_PKG_CLASS_PATH.'LibertyTag.php' );
$gBitSystem->verifyPackage( 'tags' );
@@ -34,4 +34,4 @@ if( !empty( $_REQUEST["save"] ) ) {
}
$gBitSystem->display( 'bitpackage:tags/edit_tag.tpl', tra( "Edit Tag" ) , array( 'display_mode' => 'edit' ));
-?> \ No newline at end of file
+?>