fopen dont work – Bugfix in line 206
-
There is an bug in line 206 causing an missasingment of the variable $urlmethod! Because of this bug, its not possible to use the urlmethod “allow_url_fopen”!
if($urlmethod = “curl” || is_null($urlmethod)){
This should be
if($urlmethod == “curl” || is_null($urlmethod)){
to work like aspected.
Regards
http://wordpress.org/extend/plugins/hot-linked-image-cacher/
The topic ‘fopen dont work – Bugfix in line 206’ is closed to new replies.