Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Various fixes in various components that facilitate a working MVC app…
Browse files Browse the repository at this point in the history
…lication

Zend\Controller & Zend\Application now only run namespaced applications
Zend\Controller now assumes default module is 'application' (Default is a reserved word)
Zend\Log priority casting fix
Zend\Db\Table fix for row type class check
ZendTest\Filter\StripTagsTest fixed for duplicated test
  • Loading branch information
Ralph Schindler committed Aug 2, 2010
8 parents 1cc7a46 + 1d9542f + a22d6e2 + 3496b67 + 9398e77 + 687d980 + 900dc7d + 21f6363 commit eae6146
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Page/Mvc.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public function getHref()

if (null === self::$_urlHelper) {
self::$_urlHelper =
\Zend\Controller\Action\HelperBroker::getStaticHelper('URL');
\Zend\Controller\Action\HelperBroker::getStaticHelper('url');
}

$params = $this->getParams();
Expand All @@ -197,7 +197,7 @@ public function getHref()
$url = self::$_urlHelper->__invoke($params,
$this->getRoute(),
$this->getResetParams());
//var_dump($url);

return $this->_hrefCache = $url;
}

Expand Down

0 comments on commit eae6146

Please sign in to comment.