Bendeki dosyadaki satırlar şu şekilde. Herhalde sürüm farklılığı var.

public function link($route, $args = '', $secure = false) {
if ($this->ssl && $secure) {
$url = $this->ssl . 'index.php?route=' . $route;
} else {
$url = $this->url . 'index.php?route=' . $route;
}

tasarize adlı üyeden alıntı: mesajı görüntüle
Edit /system/library/url.php
BUL
public function link($route, $args = '', $secure = false) {    if ($this->ssl && $secure) {        $url = 'https://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    } else {        $url = 'http://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    }    ... }
DEĞİŞTİR
public function link($route, $args = '', $secure = true) {    if ($this->ssl && $secure) {        $url = 'https://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    } else {        $url = 'https://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    }    ... }[B][U][/U][/B]


denermisin hocam.