Skip to content

Commit

Permalink
Fixed faulty backend url #121
Browse files Browse the repository at this point in the history
  • Loading branch information
sampoyigi committed Jun 18, 2016
1 parent cdc78e9 commit 5f4fdaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/tastyigniter/helpers/TI_url_helper.php
Expand Up @@ -201,7 +201,7 @@ function theme_url($uri = '', $protocol = NULL) {
function page_url()
{
$CI =& get_instance();
return $CI->config->site_url().$CI->uri->uri_string();
return rtrim($CI->config->site_url(), '/').'/'.$CI->uri->uri_string();
}
}

Expand Down

0 comments on commit 5f4fdaa

Please sign in to comment.