diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-07 20:51:56 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-07 20:51:56 +0000 |
commit | fc11e5260309702e3301837e3725fe8084b61a4e (patch) | |
tree | b5ba2948afc89056da7b4a08cfcaeb786e13dabd /engine/lib/users.php | |
parent | 636b7054662d4cffcc0e8615216cc39f9faae35f (diff) | |
download | elgg-fc11e5260309702e3301837e3725fe8084b61a4e.tar.gz elgg-fc11e5260309702e3301837e3725fe8084b61a4e.tar.bz2 |
Fixes #790: Removing unneeded @s.
git-svn-id: http://code.elgg.org/elgg/trunk@3513 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/users.php')
-rw-r--r-- | engine/lib/users.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index e086c8236..3a65aac56 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -1373,7 +1373,7 @@ * Page handler for dashboard */ function dashboard_page_handler($page_elements) { - @require_once(dirname(dirname(dirname(__FILE__))) . "/dashboard/index.php"); + require_once(dirname(dirname(dirname(__FILE__))) . "/dashboard/index.php"); } /** @@ -1550,11 +1550,11 @@ function users_settings_save() { global $CONFIG; - @include($CONFIG->path . "actions/user/name.php"); - @include($CONFIG->path . "actions/user/password.php"); - @include($CONFIG->path . "actions/email/save.php"); - @include($CONFIG->path . "actions/user/language.php"); - @include($CONFIG->path . "actions/user/default_access.php"); + include($CONFIG->path . "actions/user/name.php"); + include($CONFIG->path . "actions/user/password.php"); + include($CONFIG->path . "actions/email/save.php"); + include($CONFIG->path . "actions/user/language.php"); + include($CONFIG->path . "actions/user/default_access.php"); } |