Merge branch 'AddPoints' of git://git-cacert.it-sls.de/cacert-mgr

This commit is contained in:
Michael Tänzer 2010-06-28 16:10:26 +02:00
commit 87d25d7024
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {
Zend_Registry::set('view', $view); Zend_Registry::set('view', $view);
$view->doctype('XHTML1_STRICT'); $view->doctype('XHTML1_STRICT');
$view->addHelperPath(APPLICATION_PATH . '/views/helpers/'); $view->addHelperPath(APPLICATION_PATH . '/views/helpers/');
$view->headTitle = I18n::_('CACert Test Manager'); $view->headTitle = I18n::_('CAcert Test Manager');
} }
/** /**

View file

@ -153,7 +153,7 @@ class AddPointsController extends Zend_Controller_Action
$location = new Zend_Form_Element_Text('location'); $location = new Zend_Form_Element_Text('location');
$location->setRequired(true) $location->setRequired(true)
->setLabel(I18n::_('Location')) ->setLabel(I18n::_('Location'))
->setValue(I18n::_('CACert Test Manager')) ->setValue(I18n::_('CAcert Test Manager'))
->addValidator(new Zend_Validate_StringLength(1,255)); ->addValidator(new Zend_Validate_StringLength(1,255));
$form->addElement($location); $form->addElement($location);