Skip to content
Snippets Groups Projects
Commit a98a8380 authored by Aaron Reichman's avatar Aaron Reichman
Browse files

Changed spelling of lisener to listener

parent 16f3bd4e
No related branches found
No related tags found
No related merge requests found
......@@ -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']);
......
......@@ -32,8 +32,8 @@ if(isset($_GET['file'])) {
}else{
OC_USER::loginlisener();
OC_USER::logoutlisener();
OC_USER::loginlistener();
OC_USER::logoutlistener();
OC_UTIL::showheader();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment