Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-06-09 17:57:57 +0400
committerRobin Appelman <icewind@owncloud.com>2012-06-09 17:58:30 +0400
commitba1dec64c174793a714346871c58387cb2578527 (patch)
tree965022461d359825320dbfe607206275eb46e1ba /index.php
parent9c644fe53b45eacdfea90da533489686626ff356 (diff)
load all apps when loging in, needed for apps listening to login hooks
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 940bb797207..07f8436720d 100755
--- a/index.php
+++ b/index.php
@@ -88,7 +88,7 @@ elseif(OC_User::isLoggedIn()) {
// Someone wants to log in :
} elseif(isset($_POST["user"]) and isset($_POST['password']) and isset($_SESSION['sectoken']) and isset($_POST['sectoken']) and ($_SESSION['sectoken']==$_POST['sectoken']) ) {
- OC_App::loadApps(array('authentication'));
+ OC_App::loadApps();
if(OC_User::login($_POST["user"], $_POST["password"])) {
if(!empty($_POST["remember_login"])){
if(defined("DEBUG") && DEBUG) {