There is a notice in Zend/Controller/Router/Route.php on line 210: "Undefined
index: name"
Here is my patch:
Index: Zend/Controller/Router/Route.php
===================================================================
--- Zend/Controller/Router/Route.php (revision 3836)
+++ Zend/Controller/Router/Route.php (working copy)
@@ -205,11 +205,11 @@
foreach ($this->_parts as $key => $part) {
$resetPart = false;
- if (array_key_exists($part['name'], $data) &&
$data[$part['name']] === null) {
- $resetPart = true;
- }
if (isset($part['name'])) {
+ if (array_key_exists($part['name'], $data) &&
$data[$part['name']] === null) {
+ $resetPart = true;
+ }
Olivier