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

    r548 r996  
    3737} 
    3838 
    39 $GLOBALS['_RESULT'] = array( 
     39$aResult = array( 
    4040"bStateError"     => $bStateError, 
    4141"sText"   => $sTextResult, 
    4242); 
    4343 
     44if (!headers_sent()) { 
     45        header('Content-type: application/json'); 
     46} 
     47echo json_encode($aResult); 
    4448?>