Archived
1
0
Fork 0

Kommentarsfixar, påbörjad bootstrap och inloggning

This commit is contained in:
Fredric N 2010-08-02 18:37:36 +02:00
parent f0198ab85b
commit 11d3a3d6e3
4 changed files with 44 additions and 5 deletions

View file

@ -11,7 +11,12 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
*/
protected function _initView()
{
// We really should add something here ?
$view = new Zend_View();
$view->setEncoding('UTF-8');
return $view;
}
/**
@ -27,4 +32,12 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
}
/**
* Setup a sweet and simple database
* connection
*/
protected function _initDatabase()
{
// Oh, my!
}
}