Changeset 113

Show
Ignore:
Timestamp:
05/28/2007 03:37:58 PM (19 months ago)
Author:
Shadowhand
Message:

Fixing mistake checked into r58.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/Config.php

    r69 r113  
    163163                if ($pref != '') 
    164164                { 
    165                         $pref = rtrim($pref, "/")."/"; 
     165                        $pref = trim($pref, "/")."/"; 
    166166                } 
    167167                 
     
    189189                if ($uri != '') 
    190190                { 
    191                         $url .= rtrim($uri, "/").$this->item('url_suffix'); 
     191                        $url .= trim($uri, "/").$this->item('url_suffix'); 
    192192                } 
    193193                 
     
    205205        function system_url() 
    206206        { 
    207                 $uri = explode("/", rtrim(BASEPATH, "/")); 
     207                $uri = explode("/", trim(BASEPATH, "/")); 
    208208                return $this->slash_item('base_url').end($uri)."/"; 
    209209        }