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

    r548 r996  
    8282} 
    8383 
    84 $GLOBALS['_RESULT'] = array( 
     84$aResult = array( 
    8585"bStateError"     => $bStateError, 
    8686"sText"   => $sTextResult, 
     
    8989); 
    9090 
     91if (!headers_sent()) { 
     92        header('Content-type: application/json'); 
     93} 
     94echo json_encode($aResult); 
    9195?>