diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 20:59:56 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 20:59:56 +0000 |
commit | 2820a231076cc640d2de867faeba2e1a3d45a402 (patch) | |
tree | 1fd80c05de913fb0c53f38ada6caef36e310d545 /engine/classes | |
parent | b314a9a072d301e2e89c4873d76429ba46e9c94a (diff) | |
download | elgg-2820a231076cc640d2de867faeba2e1a3d45a402.tar.gz elgg-2820a231076cc640d2de867faeba2e1a3d45a402.tar.bz2 |
Refs #2463: Removed some more instances of $CONFIG->url. Added support for elgg_normalize_url to elgg_add_action_tokens_to_url
git-svn-id: http://code.elgg.org/elgg/trunk@7200 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes')
-rw-r--r-- | engine/classes/ElggSite.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/classes/ElggSite.php b/engine/classes/ElggSite.php index 6e73e56a4..febd70be6 100644 --- a/engine/classes/ElggSite.php +++ b/engine/classes/ElggSite.php @@ -352,7 +352,7 @@ class ElggSite extends ElggEntity { } // always allow index page - if ($url == $CONFIG->url) { + if ($url == elgg_get_site_url($this->guid)) { return TRUE; } |