summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-03 16:05:49 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-03 16:05:49 -0500
commit4de6e40067483780e5d542bf9dc55fd7324db435 (patch)
tree653ddf4b6816c930243e404c431de494dd24382d
parentc2c1dcbb6b3e143d29c9ad70a35c6899a3b09a24 (diff)
downloadfisheye-4de6e40067483780e5d542bf9dc55fd7324db435.tar.gz
fisheye-4de6e40067483780e5d542bf9dc55fd7324db435.tar.bz2
fisheye-4de6e40067483780e5d542bf9dc55fd7324db435.zip
update path for kernel/includes/setup_inc.php
-rw-r--r--browse.php2
-rw-r--r--edit.php2
-rw-r--r--edit_gallery_perms.php2
-rw-r--r--edit_image.php2
-rw-r--r--find_user.php2
-rw-r--r--fisheye_rss.php2
-rw-r--r--gallery_tree.php2
-rw-r--r--image_order.php2
-rw-r--r--list_galleries.php2
-rw-r--r--main.php2
-rw-r--r--thumbnailer.php2
-rw-r--r--upload.php2
-rw-r--r--view.php2
-rw-r--r--view_image.php2
-rw-r--r--view_image_details.php2
15 files changed, 15 insertions, 15 deletions
diff --git a/browse.php b/browse.php
index b3d0bbc..1feb94c 100644
--- a/browse.php
+++ b/browse.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php');
diff --git a/edit.php b/edit.php
index 4f26412..8b555ca 100644
--- a/edit.php
+++ b/edit.php
@@ -7,7 +7,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php');
diff --git a/edit_gallery_perms.php b/edit_gallery_perms.php
index 79ad38a..16c21a8 100644
--- a/edit_gallery_perms.php
+++ b/edit_gallery_perms.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php');
diff --git a/edit_image.php b/edit_image.php
index 9468f18..29329cf 100644
--- a/edit_image.php
+++ b/edit_image.php
@@ -7,7 +7,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php');
diff --git a/find_user.php b/find_user.php
index 7dececf..57a628d 100644
--- a/find_user.php
+++ b/find_user.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-include_once( "../kernel/setup_inc.php" );
+include_once( "../kernel/includes/setup_inc.php" );
if (empty($gBitThemes->mStyles['styleSheet'])) {
$gBitThemes->mStyles['styleSheet'] = $gBitThemes->getStyleCss();
diff --git a/fisheye_rss.php b/fisheye_rss.php
index 9129900..d70f047 100644
--- a/fisheye_rss.php
+++ b/fisheye_rss.php
@@ -8,7 +8,7 @@
/**
* Initialization
*/
-require_once( "../kernel/setup_inc.php" );
+require_once( "../kernel/includes/setup_inc.php" );
$gBitSystem->verifyPackage( 'fisheye' );
$gBitSystem->verifyPackage( 'rss' );
diff --git a/gallery_tree.php b/gallery_tree.php
index b76dde1..dafa975 100644
--- a/gallery_tree.php
+++ b/gallery_tree.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php');
diff --git a/image_order.php b/image_order.php
index c9cbea5..8473752 100644
--- a/image_order.php
+++ b/image_order.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php');
diff --git a/list_galleries.php b/list_galleries.php
index bb36843..7efb269 100644
--- a/list_galleries.php
+++ b/list_galleries.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
global $gBitSystem, $gBitSmarty, $gFisheyeGallery;
diff --git a/main.php b/main.php
index c1f199b..e56f61b 100644
--- a/main.php
+++ b/main.php
@@ -24,7 +24,7 @@ chdir( dirname( __FILE__ ) );
/**
* Setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
//Point of access for FisheyeRemote requests
require_once( 'FisheyeRemote.php' );
diff --git a/thumbnailer.php b/thumbnailer.php
index c94cdf7..3cd8601 100644
--- a/thumbnailer.php
+++ b/thumbnailer.php
@@ -32,7 +32,7 @@
// running from cron can cause us not to be in the right dir.
chdir( dirname( __FILE__ ) );
- require_once( '../kernel/setup_inc.php' );
+ require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php' );
// add some protection for arbitrary thumbail execution.
diff --git a/upload.php b/upload.php
index f3af448..45a92ee 100644
--- a/upload.php
+++ b/upload.php
@@ -7,7 +7,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeImage.php');
diff --git a/view.php b/view.php
index 1e173c8..3514f2d 100644
--- a/view.php
+++ b/view.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
$gBitSystem->verifyPackage( 'fisheye' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
diff --git a/view_image.php b/view_image.php
index 1df880c..76d9537 100644
--- a/view_image.php
+++ b/view_image.php
@@ -7,7 +7,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
$gBitSystem->verifyPackage( 'fisheye' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');
diff --git a/view_image_details.php b/view_image_details.php
index 5c37356..2fbd8b5 100644
--- a/view_image_details.php
+++ b/view_image_details.php
@@ -8,7 +8,7 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
$gBitSystem->verifyPackage( 'fisheye' );
require_once( FISHEYE_PKG_CLASS_PATH.'FisheyeGallery.php');