Corrected comment syntax
authorLuzifr <szekely@woltlab.com>
Sun, 4 Dec 2011 15:13:16 +0000 (16:13 +0100)
committerLuzifr <szekely@woltlab.com>
Sun, 4 Dec 2011 15:13:20 +0000 (16:13 +0100)
wcfsetup/install/files/lib/system/template/TemplateCompiler.class.php

index b7174ddfe2b3d4d3a15c7557b64abb17d8da57fd..20e52a08cddaaa46e310ee062f91bb66110b7ddf 100644 (file)
@@ -3,7 +3,7 @@ namespace wcf\system\template;
 use wcf\system\io\File;
 
 /**
- * TemplateCompiler compiles template source in valid php code.
+ * TemplateCompiler compiles template source into valid php code.
  * 
  * @author     Marcel Werk
  * @copyright  2001-2011 WoltLab GmbH
@@ -24,7 +24,7 @@ class TemplateCompiler extends TemplateScriptingCompiler {
                // build fileheader
                $compiledHeader = "<?php\n/**\n* WoltLab Community Framework\n* Template: ".$templateName."\n* Compiled at: ".gmdate('r')."\n* \n* DO NOT EDIT THIS FILE\n*/\n\$this->v['tpl']['template'] = '".addcslashes($templateName, "'\\")."';\n?>\n";
                
-               // include Plugins
+               // include plug-ins
                $compiledContent = $this->compileString($templateName, $sourceContent);
                
                // write compiled to file