You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, global $CFG; is declared after require_once($CFG), which may cause scope issues. The fix involves moving the global $CFG; declaration before the file inclusion.
The text was updated successfully, but these errors were encountered:
Currently,
global $CFG;
is declared afterrequire_once($CFG)
, which may cause scope issues. The fix involves moving theglobal $CFG;
declaration before the file inclusion.The text was updated successfully, but these errors were encountered: