Skip to content

Commit

Permalink
Merge pull request EC-CUBE#74 from bauzer/master
Browse files Browse the repository at this point in the history
Change SC_Api_Operation to SC_Api_Operation_Ex
  • Loading branch information
nanasess committed Dec 4, 2015
2 parents 25e9c8c + 0279928 commit c0f2dfa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data/class/pages/api/LC_Page_Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function action()
{
$arrParam = $_REQUEST;

list($response_outer, $arrResponse) = SC_Api_Operation::doApiAction($arrParam);
list($response_outer, $arrResponse) = SC_Api_Operation_Ex::doApiAction($arrParam);
SC_Api_Operation_Ex::sendApiResponse('xml', $response_outer, $arrResponse);
SC_Response_Ex::actionExit();
}
Expand Down
2 changes: 1 addition & 1 deletion data/class/pages/api/LC_Page_Api_Json.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function action()
{
$arrParam = $_REQUEST;

list($response_outer, $arrResponse) = SC_Api_Operation::doApiAction($arrParam);
list($response_outer, $arrResponse) = SC_Api_Operation_Ex::doApiAction($arrParam);

if (isset($arrParam["callback"])) {
$arrResponse["callback"] = $arrParam["callback"];
Expand Down
2 changes: 1 addition & 1 deletion data/class/pages/api/LC_Page_Api_Php.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function action()
{
$arrParam = $_REQUEST;

list($response_outer, $arrResponse) = SC_Api_Operation::doApiAction($arrParam);
list($response_outer, $arrResponse) = SC_Api_Operation_Ex::doApiAction($arrParam);
SC_Api_Operation_Ex::sendApiResponse('php', $response_outer, $arrResponse);
SC_Response_Ex::actionExit();
}
Expand Down
2 changes: 1 addition & 1 deletion data/class/pages/api/LC_Page_Api_Xml.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function action()
{
$arrParam = $_REQUEST;

list($response_outer, $arrResponse) = SC_Api_Operation::doApiAction($arrParam);
list($response_outer, $arrResponse) = SC_Api_Operation_Ex::doApiAction($arrParam);
SC_Api_Operation_Ex::sendApiResponse('xml', $response_outer, $arrResponse);
SC_Response_Ex::actionExit();
}
Expand Down

0 comments on commit c0f2dfa

Please sign in to comment.