Missing argument when calling an action

Hi.

I'm having some problems. I'm calling a [tt]full[/tt] method which is declared inside an [tt]issue[/tt] controller. The method receives one parameter ([tt]$id[/tt]). I'm generating the url with this code

$this->createUrl('issue/full', array('id'=>1));

obtaining the following URL: [tt]WebRoot/index.php?r=issue/full&id=1[/tt]

but when pressing the hyperlink i get Missing argument 1 for IssueController::actionFull(),.

Any ideas why the method isn't being called with the parameter?

Thanks in advance.

You actionFull method should not declare any parameter. You need to access the id parameter via $_GET.

Ahh, that's right. Thanks a lot!