Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: class_xml.php 5016 2010-06-12 00:24:02Z RyanGordon $
| * $Id$
|
*/
/**
| */
/**
|
Zeile 60 | Zeile 60 |
---|
*/ function build_tag($thisvals, $vals, &$i, $type) {
|
*/ function build_tag($thisvals, $vals, &$i, $type) {
|
$tag['tag'] = $thisvals['tag'];
| $tag = array('tag' => $thisvals['tag']);
|
if(isset($thisvals['attributes'])) { $tag['attributes'] = $thisvals['attributes'];
| if(isset($thisvals['attributes'])) { $tag['attributes'] = $thisvals['attributes'];
|
Zeile 68 | Zeile 69 |
---|
if($type == "complete") {
|
if($type == "complete") {
|
$tag['value'] = $thisvals['value'];
| if(isset($thisvals['value'])) { $tag['value'] = $thisvals['value']; }
|
} else {
| } else {
|