Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

when edit users, see error message

the error message is like this:

Incorrect integer value: '' for column 'Banned' at row 1|Gdn_Database|Query|update GDN_User User set Email = :Email, Name = :Name, ShowEmail = :ShowEmail, DateUpdated = :DateUpdated, UpdateIPAddress = :UpdateIPAddress, Banned = :Banned where UserID = :UserID

applications/dashboard/controllers/class.usercontroller.php
line 440, add this

===

if(!$this->Form->GetValue('Banned')){
$this->Form->SetFormValue('Banned', 0);
}

===

resolved

Sign In or Register to comment.