User tests: Successful: Unsuccessful:
Pull Request for Issue #26087
Make sure passing an boolean does silently work like before cc @HLeithner #25225
echo JRoute::_('index.php', false, true)."\n"; //returns http:
echo JRoute::_('index.php', false, false)."\n"; //returns relative
echo JRoute::_('index.php', false, 1)."\n"; //return https:
echo JRoute::_('index.php', false, '1')."\n"; //returns https:
echo JRoute::_('index.php', false, JROUTE::TLS_DISABLE)."\n"; debug_zval_dump(JROUTE::TLS_DISABLE); //returns http:
echo JRoute::_('index.php', false, JROUTE::TLS_FORCE)."\n"; debug_zval_dump(JROUTE::TLS_FORCE); //returns https:
echo JRoute::_('index.php', false, JROUTE::TLS_IGNORE)."\n"; debug_zval_dump(JROUTE::TLS_IGNORE); //returns relative
echo JRoute::_('index.php', false, true)."\n"; //returns https:
echo JRoute::_('index.php', false, -1)."\n"; //return http:
echo JRoute::_('index.php', false, true)."\n"; //returns http:
echo JRoute::_('index.php', false, -1)."\n"; //return http:
none.
Status | New | ⇒ | Pending |
Category | ⇒ | Libraries |
Labels |
Added:
?
|
Status | Pending | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2019-09-17 13:02:34 |
Closed_By | ⇒ | HLeithner |
Thanks for fix this b/c break.
@HLeithner you need to review this as it's a 3.x regression