Skip to content

Commit a37c423

Browse files
author
Jelmer Schreuder
committed
Merge pull request fuel#40 from billmn/1.1/develop
Fixed delimiters passed to Twig_Lexer and updated copyright
2 parents 3ba2a8a + 08ff3c0 commit a37c423

File tree

13 files changed

+30
-15
lines changed

13 files changed

+30
-15
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*~
2+
*.bak
3+
Thumbs.db
4+
desktop.ini
5+
.DS_Store
6+
.buildpath
7+
.project
8+
.settings
9+
fuel/app/logs/*/*/*
10+
fuel/app/cache/*/*
11+
nbproject/
12+
.idea
13+
*.tmproj
14+
*.sublime-project
15+
*.sublime-workspace

bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/twig/fuel/extension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/dwoo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/haml.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/jade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/markdown.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/mustache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/phptal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/smarty.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author b3ha
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

classes/view/twig.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
* @author Fuel Development Team
1010
* @license MIT License
11-
* @copyright 2010 - 2011 Fuel Development Team
11+
* @copyright 2010 - 2012 Fuel Development Team
1212
* @link http://fuelphp.com
1313
*/
1414

@@ -84,11 +84,11 @@ public static function parser()
8484
if (isset($twig_lexer_conf))
8585
{
8686
isset($twig_lexer_conf['tag_block'])
87-
and $twig_lexer_conf['tag_block'] = array_keys($twig_lexer_conf['tag_block']);
87+
and $twig_lexer_conf['tag_block'] = array_values($twig_lexer_conf['tag_block']);
8888
isset($twig_lexer_conf['tag_comment'])
89-
and $twig_lexer_conf['tag_comment'] = array_keys($twig_lexer_conf['tag_comment']);
89+
and $twig_lexer_conf['tag_comment'] = array_values($twig_lexer_conf['tag_comment']);
9090
isset($twig_lexer_conf['tag_variable'])
91-
and $twig_lexer_conf['tag_variable'] = array_keys($twig_lexer_conf['tag_variable']);
91+
and $twig_lexer_conf['tag_variable'] = array_values($twig_lexer_conf['tag_variable']);
9292

9393
$twig_lexer = new Twig_Lexer(static::$_parser, $twig_lexer_conf);
9494
static::$_parser->setLexer($twig_lexer);

config/parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @version 1.0
77
* @author Fuel Development Team
88
* @license MIT License
9-
* @copyright 2010 - 2011 Fuel Development Team
9+
* @copyright 2010 - 2012 Fuel Development Team
1010
* @link http://fuelphp.com
1111
*/
1212

0 commit comments

Comments
 (0)