maximebf / atomik

Micro framework for PHP 5.3+ [UNMAINTAINED]
MIT License
46 stars 18 forks source link

Fix non-specified params with default value in url #37

Closed zessx closed 2 years ago

zessx commented 10 years ago
Atomik::set('app.routes', array(
    'archive/:year/:month' => array(
        '@name' => 'archives',
        'action' => 'archives/index',
        'month' => 'all'
    )
);
echo Atomik::url('@archives', array('year' => 2014)); 

Before fix :

archives/2014/:month

After fix :

archives/2014