commit | 4d9fd19e6e224042e04f71c35b174990a177527d | [log] [tgz] |
---|---|---|
author | vlakoff <vlakoff@gmail.com> | Mon Dec 03 11:31:00 2012 +0100 |
committer | vlakoff <vlakoff@gmail.com> | Mon Dec 03 11:31:00 2012 +0100 |
tree | 6af41f5beeabda48ca275963666158e9c9da67b8 | |
parent | 66cb413bc614bfe50d02059347a0ad0351a014c2 [diff] [blame] |
config->site_url(): remove useless cast thanks to narfbg
diff --git a/system/core/Config.php b/system/core/Config.php index 9e6d2cb..38bcd5c 100644 --- a/system/core/Config.php +++ b/system/core/Config.php
@@ -245,7 +245,7 @@ if ($this->item('enable_query_strings') === FALSE) { - $suffix = isset($this->config['url_suffix']) ? (string) $this->config['url_suffix'] : ''; + $suffix = isset($this->config['url_suffix']) ? $this->config['url_suffix'] : ''; if ($suffix !== '') {