r54771 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r54770‎ | r54771 | r54772 >
Date:06:02, 11 August 2009
Author:tstarling
Status:ok
Tags:
Comment:
(bug 20170) Make QuickTemplate::execute() abstract, instead of sending a dorky PHP 4-style error message to the user.
Modified paths:
  • /trunk/phase3/includes/SkinTemplate.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SkinTemplate.php
@@ -1041,7 +1041,7 @@
10421042 * compatible with what we use of PHPTAL 0.7.
10431043 * @ingroup Skins
10441044 */
1045 -class QuickTemplate {
 1045+abstract class QuickTemplate {
10461046 /**
10471047 * Constructor
10481048 */
@@ -1078,9 +1078,7 @@
10791079 * Main function, used by classes that subclass QuickTemplate
10801080 * to show the actual HTML output
10811081 */
1082 - public function execute() {
1083 - echo 'Override this function.';
1084 - }
 1082+ abstract public function execute();
10851083
10861084 /**
10871085 * @private

Status & tagging log