summaryrefslogtreecommitdiff
path: root/actions/doc.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-30 13:03:42 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-30 13:03:42 -0400
commitc64f137497cb2963445b34e17ed45a3044135bab (patch)
tree88e9784ab3a4ffec3ba3670843eb79ec44752571 /actions/doc.php
parent8336a7755e0576c1e60c1ab7336d006fd3025615 (diff)
refactor common behaviour in settings pages
darcs-hash:20080630170342-84dde-5d7feb88a0a707b24c8070802a7ec99dd1f35687.gz
Diffstat (limited to 'actions/doc.php')
-rw-r--r--actions/doc.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/actions/doc.php b/actions/doc.php
index edb2cab62..6c88c4200 100644
--- a/actions/doc.php
+++ b/actions/doc.php
@@ -32,12 +32,9 @@ class DocAction extends Action {
return;
}
$c = file_get_contents($filename);
- $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
- $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
- $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
- $output = Markdown($c);
+ $output = common_markup_to_html($c);
common_show_header(_t(ucfirst($title)));
common_raw($output);
common_show_footer();
}
-} \ No newline at end of file
+}