dimps123 / web-invoice

Automatically exported from code.google.com/p/web-invoice
GNU General Public License v3.0
0 stars 2 forks source link

HTTPS issues #78

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Go to Settings -> Enforce HTTPS
2. Select 'yes'
3. Click 'Update'

What is the expected output? What do you see instead?
Invoice page uses http:// url for web-invoice-frontend.js script.
Should use https:// instead

What version of the product are you using? On what operating system?
2.0.22

Please provide any additional information below.
To overcome this issue, I've changed line 102 of web-invoice.php from:
    $this->uri = WP_PLUGIN_URL."/".$this->directory;
to:
    $this->uri = $this->frontend_path();

Original issue reported on code.google.com by nean...@gmail.com on 28 Nov 2010 at 4:15