diff options
author | Anika Henke <anika@selfthinker.org> | 2012-07-28 10:35:25 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-07-28 10:36:44 +0100 |
commit | ae45007edaa7e6d72f10a30a02548edb34ab3bfa (patch) | |
tree | d65502441ca8945e326a9d2ee1680a2c519cd3df | |
parent | d6d77e2920902e235f46e14d2adc41dd3d62dd85 (diff) | |
download | rpg-ae45007edaa7e6d72f10a30a02548edb34ab3bfa.tar.gz rpg-ae45007edaa7e6d72f10a30a02548edb34ab3bfa.tar.bz2 |
added missing phpdoc header to included template files
-rw-r--r-- | lib/tpl/dokuwiki/tpl_footer.php | 4 | ||||
-rw-r--r-- | lib/tpl/dokuwiki/tpl_header.php | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/tpl/dokuwiki/tpl_footer.php b/lib/tpl/dokuwiki/tpl_footer.php index 1b31e3323..3a2e3d121 100644 --- a/lib/tpl/dokuwiki/tpl_footer.php +++ b/lib/tpl/dokuwiki/tpl_footer.php @@ -1,4 +1,8 @@ <?php +/** + * Template footer, included in the main and detail files + */ + // must be run from within DokuWiki if (!defined('DOKU_INC')) die(); ?> diff --git a/lib/tpl/dokuwiki/tpl_header.php b/lib/tpl/dokuwiki/tpl_header.php index 5b2f806a8..0704aa271 100644 --- a/lib/tpl/dokuwiki/tpl_header.php +++ b/lib/tpl/dokuwiki/tpl_header.php @@ -1,4 +1,8 @@ <?php +/** + * Template header, included in the main and detail files + */ + // must be run from within DokuWiki if (!defined('DOKU_INC')) die(); ?> |