From b39d51eedae06b0160ad9575c1561f814b7021ab Mon Sep 17 00:00:00 2001 From: Vladimir Gorea Date: Mon, 30 Jan 2017 13:24:04 +0200 Subject: [PATCH] Extend othermethod Add multifunc arg to othermethod() method --- api_post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api_post.php b/api_post.php index 3df3fa4..3fe4957 100755 --- a/api_post.php +++ b/api_post.php @@ -239,8 +239,8 @@ public static function delete($object, $ids, api_session $session) { * @param string $dtdVersion Either "2.1" or "3.0" defaults to "3.0" * @return String the XML response from Intacct */ - public static function otherMethod($xml, api_session $session, $dtdVersion="3.0") { - return api_post::post($xml, $session,$dtdVersion); + public static function otherMethod($xml, api_session $session, $dtdVersion="3.0", $multifunc = false) { + return api_post::post($xml, $session,$dtdVersion, $multifunc); } /**