You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tried to remove the "&' from &$that
in thumb_plugins => gd_reflection.inc.php (line 46)
as was suggested on the closed thread (PHP Version 5.3.0 Issues)
My error was:
Warning: Parameter 6 to GdReflectionLib::createReflection() expected to be a reference, value given in /..pathTo.../ThumbBase.inc.php on line 212
I went there to line 211 and added '&' to $this
thusly: $args[] = &$this;
And the reflections began working.
The text was updated successfully, but these errors were encountered:
tried to remove the "&' from &$that
in thumb_plugins => gd_reflection.inc.php (line 46)
as was suggested on the closed thread (PHP Version 5.3.0 Issues)
My error was:
Warning: Parameter 6 to GdReflectionLib::createReflection() expected to be a reference, value given in /..pathTo.../ThumbBase.inc.php on line 212
I went there to line 211 and added '&' to $this
thusly: $args[] = &$this;
And the reflections began working.
The text was updated successfully, but these errors were encountered: