diff options
Diffstat (limited to 'mod/file/start.php')
-rw-r--r-- | mod/file/start.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mod/file/start.php b/mod/file/start.php index 005019060..544024d49 100644 --- a/mod/file/start.php +++ b/mod/file/start.php @@ -291,11 +291,9 @@ * @return string File URL */ function file_url($entity) { - - global $CONFIG; $title = $entity->title; $title = elgg_get_friendly_title($title); - return $CONFIG->url . "pg/file/" . $entity->getOwnerEntity()->username . "/read/" . $entity->getGUID() . "/" . $title; + return "pg/file/" . $entity->getOwnerEntity()->username . "/read/" . $entity->getGUID() . "/" . $title; } // Make sure test_init is called on initialisation |