13.03.2015, 08:16
Quote:
Programming languages are case sensitive, meaning that if you are calling OnLoadAtms but you have forwarded OnLoadATMS the script will simply not find the callback and will skip executing it while OnLoadATMS will not even be called. To fix that replace this:
Код:
mysql_function_query(MainPipeline, "SELECT * FROM `atms`", true, "OnLoadAtms", ""); Код:
mysql_function_query(MainPipeline, "SELECT * FROM `atms`", true, "OnLoadATMS", ""); |