When i update the module i got these errror message:
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in C:\wamp\www\afterfoot\sites\all\modules\smileys\smileys_import.module on line 129
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of smileys_import_packs_plist(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in C:\wamp\www\afterfoot\sites\all\modules\smileys\smileys_import.module on line 173
For both lines in smileys_import.module, the "&" has to be suppressed
line 129 should be this: smileys_import_packs_plist($packs);
line 173 should be this: smileys_import_packs_plist($packs);
Comments
Comment #1
CompShack commentedThis is also happens in D6 Alpha 4 and the fix above takes care of it.
Comment #2
Gurpartap Singh commentedFixed in HEAD. Thanks!
Comment #3
reikiman commentedAh, good, I see this has been fixed. Will a new release be made with this fix?
Comment #5
Gurpartap Singh commentedReleased in DRUPAL-6--1-0-ALPHA5.