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
When any of these methods is called (setMode, getMode & setLang) , line 255 will try to reload their respective classes. This is because different classes have methods with the same name (Date, Query, Soundex, CompressStr).
However, this leads to invoking the wrong class. For example, calling Query::setMode, will invoke Date::setMode because Date comes before Query in the config.xml
The text was updated successfully, but these errors were encountered:
When any of these methods is called (
setMode, getMode & setLang
) , line 255 will try to reload their respective classes. This is because different classes have methods with the same name (Date, Query, Soundex, CompressStr).However, this leads to invoking the wrong class. For example, calling Query::setMode, will invoke Date::setMode because Date comes before Query in the config.xml
The text was updated successfully, but these errors were encountered: