Moved /doc/ to /doc-src/

Moved the doc/ dir to /doc-src/ so that the actual
markdown files aren't substituted for the docs.
This commit is contained in:
Evan Prodromou 2009-02-10 22:33:57 -05:00
parent 7b9e69eb89
commit 1a7337f2fd
13 changed files with 6 additions and 6 deletions

View File

@ -59,7 +59,7 @@ class DocAction extends Action
{
parent::handle($args);
$this->title = $this->trimmed('title');
$this->filename = INSTALLDIR.'/doc/'.$this->title;
$this->filename = INSTALLDIR.'/doc-src/'.$this->title;
if (!file_exists($this->filename)) {
$this->clientError(_('No such document.'));
return;

View File