Changeset 5644

Show
Ignore:
Timestamp:
03/26/08 02:10:20 (2 years ago)
Author:
inureyes
Message:

#890

  • [5643]을 1.6 트리에 반영
Location:
branches/1.6
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • branches/1.6/components/Textcube.Function.Respond.php

    r5637 r5644  
    3434     
    3535    function NotFoundPage($isAjaxCall = false) { 
    36         if($isAjaxCall) return respond::ResultPage(-1); 
     36        if($isAjaxCall) {respond::ResultPage(-1);exit;} 
    3737        header('HTTP/1.1 404 Not Found'); 
    3838        header("Connection: close"); 
     
    9191    function ErrorPage($message=NULL, $buttonValue=NULL, $buttonLink=NULL, $isAjaxCall = false) { 
    9292        global $service; 
    93         if($isAjaxCall) return respond::ResultPage(-1); 
     93        if($isAjaxCall) {respond::ResultPage(-1);exit;} 
    9494?> 
    9595    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 
  • branches/1.6/interface/owner/skin/sidebar/edit/index.php

    r5637 r5644  
    44/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 
    55 
    6 $ajaxcall = isset($_REQUEST['ajaxcall']) ? true : false; 
     6$ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 
    77$ajaxmethod = isset($_REQUEST['ajaxcall']) ? $_REQUEST['ajaxcall'] : 'return false;'; 
    88 
  • branches/1.6/interface/owner/skin/sidebar/order/index.php

    r5637 r5644  
    44/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 
    55 
    6 $ajaxcall = isset($_REQUEST['ajaxcall']) ? true : false; 
     6$ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 
    77 
    88$IV = array( 
  • branches/1.6/interface/owner/skin/sidebar/register/index.php

    r5637 r5644  
    44/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 
    55 
    6 $ajaxcall = isset($_REQUEST['ajaxcall']) ? true : false; 
     6$ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 
    77 
    88$IV = array( 
  • branches/1.6/interface/owner/skin/sidebar/setPlugin/index.php

    r5637 r5644  
    44/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 
    55 
    6 $ajaxcall = isset($_REQUEST['ajaxcall']) ? true : false; 
     6$ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 
    77 
    8 $IV = array( 
     8/*$IV = array( 
    99    'REQUEST' => array( 
    1010        'sidebarNumber' => array('int'), 
     
    1212        'viewMode' => array('string','default'=>'') 
    1313    ) 
    14 ); 
     14);*/ 
    1515     
    1616require ROOT . '/lib/includeForBlogOwner.php';