I'm getting the following error:
Strict Standards: Only variables should be passed by reference in /home/bridgesh/public_html/includes/functions/html_output.php on line 45
From the following lines of code:
44. while ($val = current($new_get)){
45. if($val==end(array_reverse ($new_get)) )$new_getstr.='?'.key($new_get).'='.$val;
46. else $new_getstr.='&'.key($new_get).'='.$val;
47. next($new_get);
48. }
I've read through similar questions & answers on the subject here, but cannot figure out how to break the line down correctly.