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/commentFavourite.php

    r548 r996  
    8787 
    8888 
    89 $GLOBALS['_RESULT'] = array( 
     89$aResult = array( 
    9090        "bStateError" => $bStateError, 
    9191        "bState"      => $bState, 
     
    9494); 
    9595 
     96if (!headers_sent()) { 
     97        header('Content-type: application/json'); 
     98} 
     99echo json_encode($aResult); 
    96100?>