diff options
Diffstat (limited to 'actions/doc.php')
-rw-r--r-- | actions/doc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/doc.php b/actions/doc.php index 856025e66..98da31267 100644 --- a/actions/doc.php +++ b/actions/doc.php @@ -34,7 +34,7 @@ class DocAction extends Action $c = file_get_contents($filename); $output = common_markup_to_html($c); common_show_header(_(ucfirst($title))); - common_raw($output); + $this->raw($output); common_show_footer(); } } |