Author: ygrego Date: 2015-05-18 12:57:51 +0000 (Mon, 18 May 2015) New Revision: 1366 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1366 Log: Modification of first method condition. Modified: oipf/js/impl/ParentalControlManagerObject.js Modified: oipf/js/impl/ParentalControlManagerObject.js =================================================================== --- oipf/js/impl/ParentalControlManagerObject.js 2015-05-18 12:34:08 UTC (rev 1365) +++ oipf/js/impl/ParentalControlManagerObject.js 2015-05-18 12:57:51 UTC (rev 1366) @@ -101,7 +101,7 @@ }, verifyParentalControlPIN: function(pcPIN) { - if (this._currentPIN != pcPIN) { + if (this._currentPIN == pcPIN) { return this._PIN_CORRECT; } this._currentInvalidPINAttempts++;