-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix notice in debug mode if not template is available for current page
- Loading branch information
Showing
3 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
* | ||
* @author Stefan Wanzenried <[email protected]> | ||
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License, version 2 | ||
* @version 1.1.2 | ||
* @version 1.1.3 | ||
*/ | ||
class TemplateEngineFactory extends WireData implements Module, ConfigurableModule | ||
{ | ||
|
@@ -308,7 +308,7 @@ public static function getModuleInfo() | |
{ | ||
return array( | ||
'title' => 'Template Engine Factory', | ||
'version' => 112, | ||
'version' => 113, | ||
'author' => 'Stefan Wanzenried', | ||
'summary' => 'Provides ProcessWire integration for various template engines such as Twig or Smarty. ', | ||
'href' => 'https://processwire.com/talk/topic/6833-module-templateenginefactory/', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,10 @@ public function render() | |
return ''; | ||
} | ||
|
||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
protected function initConfig() {} | ||
|
||
} |