diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 16:10:51 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 16:10:51 +0000 |
commit | 261da83721042cdfb1e1260d07bb642f352531d5 (patch) | |
tree | 8a5c0a9eec4aeb80d79ad49d5d327c6726c66285 | |
parent | 2e18c9f778ed65bf6a48b71004e3211ead3fa0f2 (diff) | |
download | elgg-261da83721042cdfb1e1260d07bb642f352531d5.tar.gz elgg-261da83721042cdfb1e1260d07bb642f352531d5.tar.bz2 |
Correct menus being used
git-svn-id: https://code.elgg.org/elgg/trunk@1907 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/entities.php | 2 | ||||
-rw-r--r-- | languages/en.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 771627b89..b434f8f7f 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -681,7 +681,7 @@ */ public function isEnabled() { - if ($this->enabled) + if ($this->enabled == 'yes') return true; return false; diff --git a/languages/en.php b/languages/en.php index bdd2af0b0..6b9f9c4a1 100644 --- a/languages/en.php +++ b/languages/en.php @@ -513,7 +513,7 @@ To remove a widget drag it back to the <b>Widget gallery</b>.", 'load' => "Load",
'upload' => "Upload",
'ban' => "Ban", - 'ban' => "Unban",
+ 'unban' => "Unban",
'enable' => "Enable",
'disable' => "Disable",
'request' => "Request",
|