|
From: <var...@us...> - 2020-12-30 08:40:38
|
Revision: 10212
http://sourceforge.net/p/phpwiki/code/10212
Author: vargenau
Date: 2020-12-30 08:40:36 +0000 (Wed, 30 Dec 2020)
Log Message:
-----------
Fix typo: $this->_prefs
Modified Paths:
--------------
trunk/lib/WikiUser.php
Modified: trunk/lib/WikiUser.php
===================================================================
--- trunk/lib/WikiUser.php 2020-12-28 21:15:19 UTC (rev 10211)
+++ trunk/lib/WikiUser.php 2020-12-30 08:40:36 UTC (rev 10212)
@@ -1452,7 +1452,7 @@
// Should not happen! Only ADMIN_USER should use this class.
// return $this->_tryNextPass($submitted_password); // ???
// TODO: safety check if really member of the ADMIN group?
- $stored_password = $this->_pref->get('passwd');
+ $stored_password = $this->_prefs->get('passwd');
}
if ($this->_checkPass($submitted_password, $stored_password)) {
$this->_level = WIKIAUTH_ADMIN;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|