From 2a5d0416e69ad50aa42bf86f9018200f73b66463 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 15 Aug 2009 12:48:10 +0000 Subject: [PATCH] Moved 'devel' directory (need to update all repos) --- .gitattributes | 4 ++-- {devel => inc/devel}/.htaccess | 0 {devel => inc/devel}/class_Debug.php | 0 inc/includes.php | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) rename {devel => inc/devel}/.htaccess (100%) rename {devel => inc/devel}/class_Debug.php (100%) diff --git a/.gitattributes b/.gitattributes index 991ebdc4..1bb28195 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,4 @@ * text=auto !eol -devel/.htaccess -text -devel/class_Debug.php -text docs/COPYING -text docs/COPYING.documents -text docs/COPYING.software -text @@ -531,6 +529,8 @@ inc/config/config-hubmaster.php -text inc/database.php -text inc/database/.htaccess -text inc/database/lib-local.php -text +inc/devel/.htaccess -text +inc/devel/class_Debug.php -text inc/file_io.php -text inc/hooks.php -text inc/includes.php -text diff --git a/devel/.htaccess b/inc/devel/.htaccess similarity index 100% rename from devel/.htaccess rename to inc/devel/.htaccess diff --git a/devel/class_Debug.php b/inc/devel/class_Debug.php similarity index 100% rename from devel/class_Debug.php rename to inc/devel/class_Debug.php diff --git a/inc/includes.php b/inc/includes.php index baa8a636..979f16e5 100644 --- a/inc/includes.php +++ b/inc/includes.php @@ -63,9 +63,9 @@ $application = preg_replace('/([^a-z0-9_-])+/i', '', $application); FrameworkConfiguration::getInstance()->setConfigEntry('app_name', $application); // Is the devel package included? -if (is_dir(FrameworkConfiguration::getInstance()->getConfigEntry('base_path') . 'devel')) { +if (is_dir(FrameworkConfiguration::getInstance()->getConfigEntry('base_path') . 'inc/devel')) { // Load all development includes - ClassLoader::getInstance()->scanClassPath('devel'); + ClassLoader::getInstance()->scanClassPath('inc/devel'); } // END - if // [EOF] -- 2.39.2