Problem in CMenu

Hi all,

I have a question regarding CMenu and url.




<?php $this->widget('zii.widgets.CMenu',array(

            'items'=>array(

                    array('label'=>'about', 'url'=>array('/site/page', 'view'=>'about')),

                    array('label'=>'links', 'url'=>array('/site/page', 'view'=>'links')),

                    array('label'=>'an external link', 'url'=>array('http://anotherwebsite.com'))

                    

                    

            ),

         )); ?>  



The third link give for sure a bad url:


http://mywebsite.com/http://anotherwebite.com

Do you know how specifying in CMenu a way to adresse external url ?

(I precise that I read documentation before asking this question, and forum, and wiki)

Thanks all

Try without array()… just ‘url’=>‘http://…’

Thanks Mdomba

it works