Changeset 1226

Show
Ignore:
Timestamp:
08/30/07 11:04:46 (1 year ago)
Author:
Daniel
Message:

ajax_test.php (part of the widgets system) was invalid according to a PHP parser. It should now be valid, making all files in the repository currently PHP valid.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/mod/widget/ajax_test.php

    r1053 r1226  
    1010$result = '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>'; 
    1111$result .= '<answer>'; 
    12 $result .= '<result>'.$display_id.','.$type</result>'; 
     12$result .= '<result>'.$display_id.','.$type.'</result>'; 
    1313$result .= '<wid>'.$widget_id.'</wid>'; 
    14 $result .= '<edit_form><![CDATA['.widget_edit($widget).']]></edit_form>' 
     14$result .= '<edit_form><![CDATA['.widget_edit($widget).']]></edit_form>'; 
    1515$result .= '</answer>'; 
    1616header('Content-Type: application/xml');