Changeset 5644
- Timestamp:
- 03/26/08 02:10:20 (2 years ago)
- Location:
- branches/1.6
- Files:
-
- 5 modified
-
components/Textcube.Function.Respond.php (modified) (2 diffs)
-
interface/owner/skin/sidebar/edit/index.php (modified) (1 diff)
-
interface/owner/skin/sidebar/order/index.php (modified) (1 diff)
-
interface/owner/skin/sidebar/register/index.php (modified) (1 diff)
-
interface/owner/skin/sidebar/setPlugin/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.6/components/Textcube.Function.Respond.php
r5637 r5644 34 34 35 35 function NotFoundPage($isAjaxCall = false) { 36 if($isAjaxCall) return respond::ResultPage(-1);36 if($isAjaxCall) {respond::ResultPage(-1);exit;} 37 37 header('HTTP/1.1 404 Not Found'); 38 38 header("Connection: close"); … … 91 91 function ErrorPage($message=NULL, $buttonValue=NULL, $buttonLink=NULL, $isAjaxCall = false) { 92 92 global $service; 93 if($isAjaxCall) return respond::ResultPage(-1);93 if($isAjaxCall) {respond::ResultPage(-1);exit;} 94 94 ?> 95 95 <!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 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 6 $ajaxcall = isset($_REQUEST['ajaxcall'])? true : false;6 $ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 7 7 $ajaxmethod = isset($_REQUEST['ajaxcall']) ? $_REQUEST['ajaxcall'] : 'return false;'; 8 8 -
branches/1.6/interface/owner/skin/sidebar/order/index.php
r5637 r5644 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 6 $ajaxcall = isset($_REQUEST['ajaxcall'])? true : false;6 $ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 7 7 8 8 $IV = array( -
branches/1.6/interface/owner/skin/sidebar/register/index.php
r5637 r5644 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 6 $ajaxcall = isset($_REQUEST['ajaxcall']) ? true : false;6 $ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 7 7 8 8 $IV = array( -
branches/1.6/interface/owner/skin/sidebar/setPlugin/index.php
r5637 r5644 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 6 $ajaxcall = isset($_REQUEST['ajaxcall']) ? true : false;6 $ajaxcall = (isset($_REQUEST['ajaxcall']) && $_REQUEST['ajaxcall'] == true) ? true : false; 7 7 8 $IV = array(8 /*$IV = array( 9 9 'REQUEST' => array( 10 10 'sidebarNumber' => array('int'), … … 12 12 'viewMode' => array('string','default'=>'') 13 13 ) 14 ); 14 );*/ 15 15 16 16 require ROOT . '/lib/includeForBlogOwner.php';
