views:

133

answers:

0

XML

<config>
    <nav>
        <label>Home</label>
        <route>default</route>
        <module>default</module>
        <controller>index</controller>
        <action>index</action>
        <pages>
            <clips>
                <label>Clips</label>
                <module>video</module>
                <controller>clip</controller>
                <action>index</action>
                <pages>
                    <all>
                        <label>All</label>
                        <module>video</module>
                        <controller>clip</controller>
                        <action>all</action>
                        <params>
                            <char>0-9</char>
                            <page>1</page>
                        </params> 
                    </all>
                </pages>
            </clips>

My bootstrap route:

$router->addRoute('clips/page', new Zend_Controller_Router_Route('clips/:page',     array('module' => 'video', 'controller' => 'clip', 'action' => 'all')));

The clips navigation works, but the all navigation doesnt have a crumb bar for /clips/1

Ideas?