Module: appdb Branch: master Commit: b039a0ca7d71e3a7c8e4994448063eb1b5d9fe4a URL: http://source.winehq.org/git/appdb.git/?a=commit;h=b039a0ca7d71e3a7c8e499444... Author: Rosanne DiMesio <dimesio(a)earthlink.net> Date: Fri May 5 19:25:04 2017 -0500 commonReply.php: fix incorrect call to query_insert_id Should be query_appdb_insert_id. Signed-off-by: Rosanne DiMesio <dimesio(a)earthlink.net> Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com> --- include/commonReply.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/commonReply.php b/include/commonReply.php index a276cc4..8362e7e 100644 --- a/include/commonReply.php +++ b/include/commonReply.php @@ -42,7 +42,7 @@ class CommonReply extends ObjectManagerBase if(!$hResult) return false; - $this->iId = query_insert_id(); + $this->iId = query_appdb_insert_id(); foreach($this->aTags as $iTag) { @@ -146,4 +146,4 @@ class CommonReply extends ObjectManagerBase } } -?> \ No newline at end of file +?>