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

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