diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-28 14:27:07 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-28 14:27:07 -0400 |
commit | 0cabc70341727a2e017674278a33ddc970e3e2ce (patch) | |
tree | d5c0500e7a48bb85200c7864d80a70dac50db65a /lib | |
parent | f61cce95a37747e7df50e7d973aa9b274e25db94 (diff) |
add doc action
darcs-hash:20080528182707-84dde-5f15e83a1243ec29a890b3b258163d07db5fc329.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index 448c049c0..1b308d14e 100644 --- a/lib/util.php +++ b/lib/util.php @@ -150,6 +150,11 @@ function common_text($txt) { $xw->text($txt); } +function common_raw($xml) { + global $xw; + $xw->writeRaw($xml); +} + function common_license_block() { global $config, $xw; common_element_start('p', 'license greenBg'); |