Fixes for some E_NOTICE and type-hints added (#5358)
* Fixed http://github to https://github Signed-off-by: Roland Häder <roland@mxchange.org> * Fixes for #4965: - updated messages.po file Signed-off-by: Roland Häder <roland@mxchange.org> * Fixed E_NOTICE where isset()/empty() was absent. Signed-off-by: Roland Häder <roland@mxchange.org> * Fixed missing variable $sql_order causing E_NOTICE. Signed-off-by: Roland Häder <roland@mxchange.org> * Continued: - added array type-hint where known (some) Signed-off-by: Roland Häder <roland@mxchange.org> * Fixes: - in Profile::load() $user is now only one-dimensional - $a->get_hostname is no property, it is a method Signed-off-by: Roland Häder <roland@mxchange.org> * reverted changes that are unintended Signed-off-by: Roland Häder <roland@mxchange.org> * Continued: - removed leading \ (uncommon, okay) - removed entire if() block (CR by Hypolite) Signed-off-by: Roland Häder <roland@mxchange.org> * Removed if() block Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
30cef1a739
commit
6b5d90333f
5 changed files with 11 additions and 9 deletions
2
boot.php
2
boot.php
|
|
@ -677,7 +677,7 @@ function check_url(App $a)
|
|||
// and www.example.com vs example.com.
|
||||
// We will only change the url to an ip address if there is no existing setting
|
||||
|
||||
if (empty($url) || (!link_compare($url, System::baseUrl())) && (!preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/", $a->get_hostname))) {
|
||||
if (empty($url) || (!link_compare($url, System::baseUrl())) && (!preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/", $a->get_hostname()))) {
|
||||
Config::set('system', 'url', System::baseUrl());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue