blob: 8004412aea8f8c7f48e1bb64872bd9b5a0766d0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?xml version="1.0" encoding="UTF-8" ?>
<dataset>
<table name="phpbb_styles">
<column>style_id</column>
<column>style_name</column>
<column>style_copyright</column>
<column>style_active</column>
<column>style_path</column>
<column>bbcode_bitfield</column>
<column>style_parent_id</column>
<column>style_parent_tree</column>
<row>
<value>1</value>
<value>foo</value>
<value></value>
<value>1</value>
<value>foo</value>
<!-- Bitfield for "b" only -->
<value>QA==</value>
<value>0</value>
<value></value>
</row>
<row>
<value>2</value>
<value>bar</value>
<value></value>
<value>1</value>
<value>bar</value>
<!-- Bitfield for "b" only -->
<value>QA==</value>
<value>0</value>
<value></value>
</row>
</table>
</dataset>
|