Activity log for bug #1355572

Date Who What changed Old value New value Message
2014-08-12 03:24:08 Simon Coggins bug added bug
2014-08-21 04:53:45 Aaron Wells description There are a few places which do this: if (strpos($jsfile, 'http://' === false)) { ... when they should do this: if (stripos($jsfile, 'http://' === false) && stripos($jsfile, 'http://' === false)) { ... the problem only reveals itself on https sites where the wwwroot is in a subdirectory such as https://mysite/mahara/. The result is that the URL to include files is wrong so the files aren't loaded. There are a few places which do this: if (strpos($jsfile, 'http://' === false)) { ... when they should do this: if (stripos($jsfile, 'http://' === false) && stripos($jsfile, 'https://' === false)) { ... the problem only reveals itself on https sites where the wwwroot is in a subdirectory such as https://mysite/mahara/. The result is that the URL to include files is wrong so the files aren't loaded.
2014-08-23 05:24:12 Kristina Hoeppner mahara: status New In Progress
2014-08-23 05:24:15 Kristina Hoeppner mahara: importance Undecided Medium
2014-08-23 05:24:23 Kristina Hoeppner mahara: assignee Aaron Wells (u-aaronw)
2014-08-23 05:24:26 Kristina Hoeppner mahara: milestone 1.10.0
2014-08-26 23:40:22 Son Nguyen mahara: status In Progress Fix Committed
2014-10-21 03:48:30 Aaron Wells mahara: status Fix Committed Fix Released