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

R.Muilwijk’s picture

A new drupal 6 release will be posted soon. There will not be a backport so closing this to get a clean queue.

R.Muilwijk’s picture

Status: Needs review » Closed (fixed)