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

    r548 r996  
    8888 
    8989 
    90 $GLOBALS['_RESULT'] = array( 
     90$aResult = array( 
    9191"bStateError"     => $bStateError, 
    9292"iRating"   => $iRating, 
     
    9595); 
    9696 
     97if (!headers_sent()) { 
     98        header('Content-type: application/json'); 
     99} 
     100echo json_encode($aResult); 
    97101?>