summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/doc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/doc.php b/actions/doc.php
index 0697b25d4..0ace04246 100644
--- a/actions/doc.php
+++ b/actions/doc.php
@@ -27,7 +27,7 @@ class DocAction extends Action {
parent::handle($args);
$title = $this->trimmed('title');
$filename = INSTALLDIR.'/doc/'.$title;
- if (!file_exists()) {
+ if (!file_exists($filename)) {
common_user_error(_t('No such document.'));
return;
}