Casey Bisson
Member
Posted 1 year ago #
Awesome plugin, but it generates URLs based on get_bloginfo("wpurl"), which doesn't return https URLs. That breaks it on my site. Specifically, the way it generates the action URL for the form in popup.php is problematic.
Also, though doesn't affect me yet, some of the assumptions about paths could hurt me if I move plugins out of the regular location.
http://wordpress.org/extend/plugins/enable-media-replace/
wjdennen
Member
Posted 1 year ago #
There seems to be a typo in the latest version of this plugin.
Line 26 of popup.php
$forumurl = str_replace("http:", "https:", $formurl);
should be
$formurl = str_replace("http:", "https:", $formurl);
This seems to solve some problems we've been having.
Måns Jonasson
Member
Posted 1 year ago #
This is fixed in the latest release. Please update and try it out.
/M;
wjdennen
Member
Posted 1 year ago #