diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-02 06:06:39 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-02 06:06:39 +0000 |
commit | fcd0eae9ddee220fa6e5d82278024d062ede88dd (patch) | |
tree | 2885e3d94551dddac8c9db9aeee585f82961929d /phpBB/docs/coding-guidelines.html | |
parent | 395fb81a0fa0a240b11ad66c14830f0afbf0e7bc (diff) | |
download | forums-fcd0eae9ddee220fa6e5d82278024d062ede88dd.tar forums-fcd0eae9ddee220fa6e5d82278024d062ede88dd.tar.gz forums-fcd0eae9ddee220fa6e5d82278024d062ede88dd.tar.bz2 forums-fcd0eae9ddee220fa6e5d82278024d062ede88dd.tar.xz forums-fcd0eae9ddee220fa6e5d82278024d062ede88dd.zip |
#32115 (small typo in coding guidelines)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8803 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r-- | phpBB/docs/coding-guidelines.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html index 3e73e186b2..4556e53b9b 100644 --- a/phpBB/docs/coding-guidelines.html +++ b/phpBB/docs/coding-guidelines.html @@ -1473,9 +1473,13 @@ div <a name="inheritance"></a><h3>4.ii. Template Inheritance</h3> <p>When basing a new template on an existing one, it is not necessary to provide all template files. By declaring the template to be "<strong>inheriting</strong>" in the template configuration file.</p> - <p>The Limitation on this is that the base style has to installed and complete, meaning that it is not itself inheriting.</p> + + <p>The limitation on this is that the base style has to be installed and complete, meaning that it is not itself inheriting.</p> + <p>The effect of doing so is that the template engine will use the files in the new template where they exist, but fall back to files in the base template otherwise. Declaring a style to be inheriting also causes it to use some of the configuration settings of the base style, notably database storage.</p> + <p>We strongly encourage the use of inheritance for styles based on the bundled styles, as it will ease the update procedure.</p> + <div class="codebox"><pre> # General Information about this template name = inherits |