In route_find, notice in strict mode
Reported by Fabrice Luraine | October 21st, 2010 @ 04:47 PM
Only variables should be passed by reference in /var/www/utf8/audiens/vendors/limonade/lib/limonade.php on line1347
At line 1347:
$params = array_replace($params, array_combine($names, $matches));
Will be solved with:
$arr_comb = array_combine($names, $matches);
$params = array_replace($params, $arr_comb);
Comments and changes to this ticket
-
Fabrice Luraine December 18th, 2010 @ 08:40 AM
- State changed from new to resolved
(from [8ed22bdc9e83bbc4e94f5aaf6b94baa66b5394e3]) Fix a PHP notice raised in strict mode [#48 state:resolved] https://github.com/sofadesign/limonade/commit/8ed22bdc9e83bbc4e94f5...
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Limonade is a PHP micro-framework.
People watching this ticket
Referenced by
- 48 In route_find, notice in strict mode (from [8ed22bdc9e83bbc4e94f5aaf6b94baa66b5394e3]) Fix a P...