Closed (fixed)
Project:
Selenium
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Mar 2007 at 17:29 UTC
Updated:
1 Feb 2010 at 21:26 UTC
Hi,
starting to play around with this, but get this error (PHP 5):
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of selenium_suite_view(). 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. However, future versions may not support this any longer. in /Users/..../selenium.module on line 299
Line 299
selenium_suite_view(&$node, NULL, NULL, TRUE);
Removing '&' fixes it.
selenium_suite_view($node, NULL, NULL, TRUE);
Comments
Comment #1
R.Muilwijk commentedA new drupal 6 release will be posted soon. There will not be a backport so closing this to get a clean queue.
Comment #2
R.Muilwijk commented