Merge pull request #72 from ItsStev/issue-65

resolving issue #65
This commit is contained in:
Lorenc Pekaj 2019-08-25 20:51:03 +10:00 committed by GitHub
commit 02bb71be04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -539,8 +539,8 @@ thread OnPlayerBanLog( playerid, const Name[ ] )
for ( new row = 0; row < rows; row ++ ) for ( new row = 0; row < rows; row ++ )
{ {
cache_get_field_content_int( row, "DATE", ban_date ); ban_date = cache_get_field_content_int( row, "DATE" );
cache_get_field_content_int( row, "EXPIRE", ban_expire ); ban_expire = cache_get_field_content_int( row, "EXPIRE" );
cache_get_field_content( row, "IP", ban_ip ); cache_get_field_content( row, "IP", ban_ip );
cache_get_field_content( row, "REASON", ban_reason ); cache_get_field_content( row, "REASON", ban_reason );
cache_get_field_content( row, "BANBY", ban_by ); cache_get_field_content( row, "BANBY", ban_by );