Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -1041,7 +1041,7 @@ |
1042 | 1042 | * compatible with what we use of PHPTAL 0.7. |
1043 | 1043 | * @ingroup Skins |
1044 | 1044 | */ |
1045 | | -class QuickTemplate { |
| 1045 | +abstract class QuickTemplate { |
1046 | 1046 | /** |
1047 | 1047 | * Constructor |
1048 | 1048 | */ |
— | — | @@ -1078,9 +1078,7 @@ |
1079 | 1079 | * Main function, used by classes that subclass QuickTemplate |
1080 | 1080 | * to show the actual HTML output |
1081 | 1081 | */ |
1082 | | - public function execute() { |
1083 | | - echo 'Override this function.'; |
1084 | | - } |
| 1082 | + abstract public function execute(); |
1085 | 1083 | |
1086 | 1084 | /** |
1087 | 1085 | * @private |