summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/IndexController.php
diff options
context:
space:
mode:
authormichael pereira2011-04-20 18:49:49 +0200
committermichael pereira2011-04-20 18:49:49 +0200
commitcc3660add480ac1dc217d7f853b325db7d6ec7d0 (patch)
tree8056c87777d806c613a607c3f479ce07475b5db6 /application/modules/user/controllers/IndexController.php
parentAPI + Fixes (diff)
parentUrl für Config gekürzt (diff)
downloadpbs2-cc3660add480ac1dc217d7f853b325db7d6ec7d0.tar.gz
pbs2-cc3660add480ac1dc217d7f853b325db7d6ec7d0.tar.xz
pbs2-cc3660add480ac1dc217d7f853b325db7d6ec7d0.zip
merges
Diffstat (limited to 'application/modules/user/controllers/IndexController.php')
-rw-r--r--application/modules/user/controllers/IndexController.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/application/modules/user/controllers/IndexController.php b/application/modules/user/controllers/IndexController.php
index 350d0e5..a704261 100644
--- a/application/modules/user/controllers/IndexController.php
+++ b/application/modules/user/controllers/IndexController.php
@@ -12,15 +12,15 @@
class User_IndexController extends Zend_Controller_Action
{
- public function init()
- {
- /* Initialize action controller here */
- }
+ public function init()
+ {
+ /* Initialize action controller here */
+ }
- public function indexAction()
- {
-
- if (!Zend_Auth::getInstance()->hasIdentity()) {
+ public function indexAction()
+ {
+
+ if (!Zend_Auth::getInstance()->hasIdentity()) {
$this->view->text = 'Your not logged in, please log in first <a href="/user/auth/">here</a>.';
}
else{
@@ -32,7 +32,7 @@ class User_IndexController extends Zend_Controller_Action
'/user/bootmenu' => 'Create your Bootmenu',
);
$this->view->links = $links;
- }
- }
+ }
+ }
}