diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 21:36:21 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 21:36:21 +0000 |
commit | 1d3d21b69eafb45c97e283ead86f63e7bf1731dc (patch) | |
tree | ea53464aa86dd85a3ede83e8192a1bd8e6e0f363 /mod/file/start.php | |
parent | 59bbd848d809da169e0d6baadce4890ac375b90b (diff) | |
download | elgg-1d3d21b69eafb45c97e283ead86f63e7bf1731dc.tar.gz elgg-1d3d21b69eafb45c97e283ead86f63e7bf1731dc.tar.bz2 |
Refs #2463: Removed gratuitous references to $CONFIG->url, etc. in blog - groups plugins
git-svn-id: http://code.elgg.org/elgg/trunk@7204 36083f99-b078-4883-b0ff-0f9b5a30f544
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 |