diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/script.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index e589a90ed..b0dffd272 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/11/26 + * Fixed buildin_query_sql using Sql_Query instead of Sql_QueryStr, making + all %f,%d,... be processed. (fixes bureport:218) [FlavioJS] * Fixed guild expulsion not working correctly [ultramage] * Fixed a memory leak in mail_savemessage (src\char_sql\int_mail.c). [FlavioJS] 2007/11/25 diff --git a/src/map/script.c b/src/map/script.c index 17d859289..4198fdd55 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -11588,7 +11588,7 @@ BUILDIN_FUNC(query_sql) // Execute the query query = script_getstr(st,2); - if( SQL_ERROR == Sql_Query(mmysql_handle, query) ) + if( SQL_ERROR == Sql_QueryStr(mmysql_handle, query) ) { Sql_ShowDebug(mmysql_handle); script_pushint(st, 0); |