diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2021-02-02 12:10:53 -0500 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2021-02-02 12:10:53 -0500 |
| commit | 5c6319e71df90b5adf98d145c06095d64356c311 (patch) | |
| tree | 5bf6435af4caed312727916a458df6474b0169c3 /admin | |
| parent | 1086b09bdce0b69ea6bf1c931cc0b6f3967921da (diff) | |
| download | fisheye-5c6319e71df90b5adf98d145c06095d64356c311.tar.gz fisheye-5c6319e71df90b5adf98d145c06095d64356c311.tar.bz2 fisheye-5c6319e71df90b5adf98d145c06095d64356c311.zip | |
move _inc and classes to includes/classes and use PKG_CLASS/INCLUDE_PATH constants
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin_fisheye_inc.php | 2 | ||||
| -rw-r--r-- | admin/schema_inc.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/admin/admin_fisheye_inc.php b/admin/admin_fisheye_inc.php index 5a84ad7..3fe94e2 100644 --- a/admin/admin_fisheye_inc.php +++ b/admin/admin_fisheye_inc.php @@ -125,7 +125,7 @@ $formImageLists = array( ); $gBitSmarty->assign( 'formImageLists', $formImageLists); -require_once( FISHEYE_PKG_PATH.'FisheyeGallery.php' ); +require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php' ); $gBitSmarty->assign( 'galleryPaginationTypes', FisheyeGallery::getAllLayouts() ); $sortOptions = array( diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 245e450..0aee38b 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -98,8 +98,8 @@ if( defined( 'RSS_PKG_NAME' )) { // ### Register content types $gBitInstaller->registerContentObjects( FISHEYE_PKG_NAME, array( - 'FisheyeGallery'=>FISHEYE_PKG_PATH.'FisheyeGallery.php', - 'FisheyeImage'=>FISHEYE_PKG_PATH.'FisheyeImage.php', + 'FisheyeGallery'=>FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php', + 'FisheyeImage'=>FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php', )); // Requirements |
