← Back to team overview

mahara-contributors team mailing list archive

[Bug 1355572] [NEW] Blocktype JS includes not loaded correctly on https sites using subdirectory for wwwroot

 

Public bug reported:

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.

** Affects: mahara
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1355572

Title:
  Blocktype JS includes not loaded correctly on https sites using
  subdirectory for wwwroot

Status in Mahara ePortfolio:
  New

Bug 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.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1355572/+subscriptions


Follow ups

References