X Tutup
Skip to content

Commit 16f8d73

Browse files
committed
修正第三方模板引擎驱动类
1 parent b7e3b47 commit 16f8d73

File tree

84 files changed

+225
-258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+225
-258
lines changed

ThinkPHP/Common/functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------
99
// | Author: liu21st <liu21st@gmail.com>
1010
// +----------------------------------------------------------------------
1111

1212
/**
13-
* Think 函数库
13+
* Think 系统函数库
1414
*/
1515

1616
/**

ThinkPHP/Conf/convention.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------

ThinkPHP/Conf/debug.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------
@@ -23,5 +23,5 @@
2323
'TMPL_CACHE_ON' => false, // 是否开启模板编译缓存,设为false则每次都会重新编译
2424
'TMPL_STRIP_SPACE' => false, // 是否去除模板文件里面的html空格与换行
2525
'SHOW_ERROR_MSG' => true, // 显示错误信息
26-
'URL_CASE_INSENSITIVE' => false, // URL区分大小写
26+
'URL_CASE_INSENSITIVE' => false, // URL区分大小写
2727
);

ThinkPHP/Lang/en-us.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------
@@ -13,9 +13,9 @@
1313
* ThinkPHP English language package
1414
*/
1515
return array(
16-
/* core language pachage */
16+
/* core language pachage */
1717
'_MODULE_NOT_EXIST_' => "Module can't be loaded",
18-
'_CONTROLLER_NOT_EXIST_' => "Controler can't be loaded",
18+
'_CONTROLLER_NOT_EXIST_' => "Controler can't be loaded",
1919
'_ERROR_ACTION_' => 'Illegal Action',
2020
'_LANGUAGE_NOT_LOAD_' => "Can't load language package",
2121
'_TEMPLATE_NOT_EXIST_' => "Template does't exist",
@@ -33,15 +33,15 @@
3333
'_NOT_SUPPERT_' => 'The system does not support',
3434
'_CACHE_TYPE_INVALID_' => 'Unable to load the cache type',
3535
'_FILE_NOT_WRITEABLE_' => 'Directory (file) is not writable',
36-
'_METHOD_NOT_EXIST_' => 'The method you requested does not exist!',
36+
'_METHOD_NOT_EXIST_' => 'The method you requested does not exist!',
3737
'_CLASS_NOT_EXIST_' => 'Instantiating a class does not exist!',
3838
'_CLASS_CONFLICT_' => 'Class name conflicts',
3939
'_TEMPLATE_ERROR_' => 'Template Engine errors',
4040
'_CACHE_WRITE_ERROR_' => 'Cache file write failed!',
4141
'_TAGLIB_NOT_EXIST_' => 'Tag library is not defined',
42-
'_OPERATION_FAIL_' => 'Operation failed!',
43-
'_OPERATION_SUCCESS_' => 'Operation successed!',
44-
'_SELECT_NOT_EXIST_' => 'Record does not exist!',
42+
'_OPERATION_FAIL_' => 'Operation failed!',
43+
'_OPERATION_SUCCESS_' => 'Operation successed!',
44+
'_SELECT_NOT_EXIST_' => 'Record does not exist!',
4545
'_EXPRESS_ERROR_' => 'Expression errors',
4646
'_TOKEN_ERROR_' => "Form's token errors",
4747
'_RECORD_HAS_UPDATE_' => 'Record has been updated',

ThinkPHP/Lang/zh-cn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------

ThinkPHP/Lang/zh-tw.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------

ThinkPHP/Library/Behavior/BuildLiteBehavior.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------

ThinkPHP/Library/Behavior/ChromeShowPageTraceBehavior.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------

ThinkPHP/Library/Behavior/ContentReplaceBehavior.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------

ThinkPHP/Library/Behavior/ParseTemplateBehavior.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// +----------------------------------------------------------------------
33
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
44
// +----------------------------------------------------------------------
5-
// | Copyright (c) 2006-2013 http://thinkphp.cn All rights reserved.
5+
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
66
// +----------------------------------------------------------------------
77
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
88
// +----------------------------------------------------------------------

0 commit comments

Comments
 (0)
X Tutup