summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorAaron Reichman <areichman.kde@gmail.com>2010-03-13 13:34:46 -0800
committerAaron Reichman <areichman.kde@gmail.com>2010-03-13 13:34:46 -0800
commita98a83802b46fcbe14419cb057ae7a3bf242a8ec (patch)
tree72177e349df1ca3fe8b23bf8c54198ba9da66054 /inc
parent16f3bd4e2334491152510598f861a1f6c1ecdae2 (diff)
downloadnextcloud-server-a98a83802b46fcbe14419cb057ae7a3bf242a8ec.tar.gz
nextcloud-server-a98a83802b46fcbe14419cb057ae7a3bf242a8ec.zip
Changed spelling of lisener to listener
Diffstat (limited to 'inc')
-rwxr-xr-xinc/lib_base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/lib_base.php b/inc/lib_base.php
index 1ae2bdab877..9419226aca6 100755
--- a/inc/lib_base.php
+++ b/inc/lib_base.php
@@ -57,7 +57,7 @@ class OC_USER {
* check if the login button is pressed and logg the user in
*
*/
- public static function loginlisener(){
+ public static function loginlistener(){
global $CONFIG_ADMINLOGIN;
global $CONFIG_ADMINPASSWORD;
if(isset($_POST['loginbutton']) and isset($_POST['password']) and isset($_POST['login'])){
@@ -74,7 +74,7 @@ class OC_USER {
* check if the logout button is pressed and logout the user
*
*/
- public static function logoutlisener(){
+ public static function logoutlistener(){
if(isset($_GET['logoutbutton'])){
OC_LOG::event($_SESSION['username'],2,'');
if(isset($_SESSION['username'])) unset($_SESSION['username']);