Show
Ignore:
Timestamp:
03/24/08 13:27:34 (10 months ago)
Author:
inureyes
Message:

#890

  • ajaxcall 관련 처리
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/owner/skin/sidebar/initialize/index.php

    r5285 r5625  
    33/// All rights reserved. Licensed under the GPL. 
    44/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 
     5 
     6$ajaxcall = isset($_REQUEST['ajaxcall']) ? true : false; 
     7 
    58require ROOT . '/lib/includeForBlogOwner.php'; 
    69requireStrictRoute(); 
     
    1215setting::removeBlogSettingGlobal('sidebarOrder'); 
    1316Skin::purgeCache(); 
    14 header('Location: '. $blogURL . '/owner/skin/sidebar' . $_REQUEST['viewMode']); 
     17if($ajaxcall == false) header('Location: '. $blogURL . '/owner/skin/sidebar' . $_REQUEST['viewMode']); 
     18else respond::ResultPage(0); 
    1519?>