Show
Ignore:
Timestamp:
08/21/10 20:31:41 (21 months ago)
Author:
ort
Message:

Избавляемся от использования JsHttpRequest? и отдаем ответы в формате JSON

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/include/ajax/joinLeaveBlog.php

    r891 r996  
    110110 
    111111 
    112 $GLOBALS['_RESULT'] = array( 
     112$aResult = array( 
    113113"bStateError"     => $bStateError, 
    114114"bState"   => $bState, 
     
    118118); 
    119119 
     120if (!headers_sent()) { 
     121        header('Content-type: application/json'); 
     122} 
     123echo json_encode($aResult); 
    120124?>