Merge pull request #181 from lunika/171-route-coupon-creation

This PR was merged into thelia:master branch.

Discussion
----------

Fix routing name in Coupon creation module

                        
| Q             | A    |
| ---           | ---  |
| Bug fix?      | y    |
| New feature?  | n    |
| BC breaks?    | n    |
| Deprecations? | n    |
| Tests pass?   | y    |
| Fixed tickets | #171 |
| License       | GPL  |
| Doc PR        |      |
                        


Commits
-------

992b5be95c fix routing name in Coupon module. Fix #171 lunika
This commit is contained in:
Manuel Raynaud
2014-01-17 05:34:37 -08:00

View File

@@ -155,7 +155,7 @@ class CouponController extends BaseAdminController
$args['dateFormat'] = $this->getSession()->getLang()->getDateFormat();
$args['availableCoupons'] = $this->getAvailableCoupons();
$args['urlAjaxAdminCouponDrawInputs'] = $this->getRoute(
'admin.coupon.draw.inputs',
'admin.coupon.draw.inputs.ajax',
array('couponServiceId' => 'couponServiceId'),
Router::ABSOLUTE_URL
);