12.02.2018, 23:33
Hello, i had an old gamemode on my PC and i started to convert it from mysql R39 to MYSQL R41, everything was done and successful but i have a little issue, here it is:
Code:
^ that is the line
PHP код:
error 025: function heading differs from prototype
PHP код:
public OnQueryError(errorid, error[], callback[], query[], connectionHandle)
{
foreach (new i : Player)
{
if (PlayerData[i][pAdmin] >= 6 && PlayerData[i][pExecute])
{
PlayerData[i][pExecute] = 0;
Dialog_Show(i, ExecuteQuery, DIALOG_STYLE_INPUT, "Execute Query", "Error: \"%s\"\n\nPlease specify the MySQL query to execute below:", "Execute", "Back", error);
}
}
printf("** [MySQL]: %s", error);
Log_Write("logs/mysql_log.txt", "[%s] %s: %s", ReturnDate(), (callback[0]) ? (callback) : ("n/a"), error);
return 1;
}
PHP код:
public OnQueryError(errorid, error[], callback[], query[], connectionHandle)