10 lines
242 B
PHP
10 lines
242 B
PHP
|
|
<root>
|
||
|
|
<?php IF (is_array($message)): ?>
|
||
|
|
<?php FOREACH ($message as $msg): ?>
|
||
|
|
<error><?php echo text::xmlData($msg) ?></error>
|
||
|
|
<?php ENDFOREACH ?>
|
||
|
|
<?PHP ELSE: ?>
|
||
|
|
<error><?php echo text::xmlData($message) ?></error>
|
||
|
|
<?PHP ENDIF ?>
|
||
|
|
</root>
|