From 8cbbd973f20e068892ca0d27346c5c3b94d851db Mon Sep 17 00:00:00 2001 From: Fredric N Date: Wed, 8 Sep 2010 20:17:34 +0200 Subject: [PATCH] Small datastorage update --- application/Bootstrap.php | 6 +++--- application/{datapoints => datastorage}/Users.php | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename application/{datapoints => datastorage}/Users.php (100%) diff --git a/application/Bootstrap.php b/application/Bootstrap.php index 1805349..cc38c2b 100644 --- a/application/Bootstrap.php +++ b/application/Bootstrap.php @@ -175,15 +175,15 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap } /** - * Make sure we find our datapoints + * Setup datastorage */ - protected function _initDatapoints() + protected function _initDatastorage() { $this->bootstrap('autoloader'); // Include datapoints directory set_include_path(implode(PATH_SEPARATOR, array( - APPLICATION_PATH . '/datapoints', + APPLICATION_PATH . '/datastorage', get_include_path() ))); } diff --git a/application/datapoints/Users.php b/application/datastorage/Users.php similarity index 100% rename from application/datapoints/Users.php rename to application/datastorage/Users.php