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 array_unshift(). 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 /var/www/vhosts/localhost/drupal/sites/all/modules/gmaps/includes/gmaps.map-pages.inc on line 305

can u help me?

thanks

Comments

kiero63’s picture

In your gmaps.map-pages.inc files go to the line 305 and change "array_unshift($args, &$gmi);" into "array_unshift($args, $gmi);"

Hope it help you.