diff options
author | Andrey Andreev <narf@devilix.net> | 2018-06-01 16:48:25 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2018-06-01 16:49:12 +0200 |
commit | aa27dc0fd00d14456607da341df7493f0170abaa (patch) | |
tree | a36ca24ca826633b0dffb37770f27d9f6230b9dd /system/helpers/html_helper.php | |
parent | 8cf7d86ede61a5b16c12acf6269996623ae903e5 (diff) |
Merge pull request #5516 from wpyh/patch-1
Use Config::base_url() properly
Diffstat (limited to 'system/helpers/html_helper.php')
-rw-r--r-- | system/helpers/html_helper.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 5cec4597b..260afe9a2 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -200,7 +200,7 @@ if ( ! function_exists('img')) } else { - $img .= ' src="'.get_instance()->config->slash_item('base_url').$v.'"'; + $img .= ' src="'.get_instance()->config->base_url($v).'"'; } } else @@ -292,7 +292,7 @@ if ( ! function_exists('link_tag')) } else { - $link .= 'href="'.$CI->config->slash_item('base_url').$v.'" '; + $link .= 'href="'.$CI->config->base_url($v).'" '; } } else @@ -313,7 +313,7 @@ if ( ! function_exists('link_tag')) } else { - $link .= 'href="'.$CI->config->slash_item('base_url').$href.'" '; + $link .= 'href="'.$CI->config->base_url($href).'" '; } $link .= 'rel="'.$rel.'" type="'.$type.'" '; |