Revision #8                                    has been created by  toph                                    on May 6, 2014, 1:06:04 PM with the memo:
 toph                                    on May 6, 2014, 1:06:04 PM with the memo:
                                
                                
                                    Fixed bug in `$this->createUrl()`. First parameter should be a string not an array.                                
                                                                    « previous (#7)                                                                                            
                            Changes
                            
    Title
    unchanged
    FORM with GET method causes repeated stacking of URL Parameters
    Category
    unchanged
    Tips
    Yii version
    unchanged
    
    Tags
    unchanged
    yii2, form, get, parameter, stacking, hidden, input, repeat, repetition
    Content
    changed
    [...]
]);
// In Yii 1.x
$form = $this->beginWidget('CActiveForm', [
        'method' => 'get',
        'action' => $this->createUrl(['order/index'
]),
]);
```
This will automatically use the action URI set above for each form submission rather than relying on the URL from the address bar. Thus the URL parameter repetition and stacking will not happen.