cvs: smarty /libs Smarty.class.php
"Monte Ohrt" <[email protected]>
| Newsgroups | gmane.comp.php.cvs.smarty |
|---|---|
| Message-ID | <cvsmohrt1089840690@cvsserver> |
mohrt Wed Jul 14 17:31:30 2004 EDT
Modified files:
/smarty/libs Smarty.class.php
Log:
replace " with ' where literal strings are quoted (ever so slight speedup)
http://cvs.php.net/diff.php/smarty/libs/Smarty.class.php?r1=1.494&r2=1.495&ty=u
Index: smarty/libs/Smarty.class.php
diff -u smarty/libs/Smarty.class.php:1.494 smarty/libs/Smarty.class.php:1.495
--- smarty/libs/Smarty.class.php:1.494 Mon Jul 12 11:22:56 2004
+++ smarty/libs/Smarty.class.php Wed Jul 14 17:31:29 2004
@@ -30,7 +30,7 @@
* @version 2.6.4-dev
*/
-/* $Id: Smarty.class.php,v 1.494 2004/07/12 15:22:56 messju Exp $ */
+/* $Id: Smarty.class.php,v 1.495 2004/07/14 21:31:29 mohrt Exp $ */
/**
* DIR_SEP isn't used anymore, but third party apps might
@@ -263,7 +263,7 @@
*
* @var string
*/
- var $request_vars_order = "EGPCS";
+ var $request_vars_order = 'EGPCS';
/**
* Indicates wether $HTTP_*_VARS[] (request_use_auto_globals=false)
@@ -1196,12 +1196,12 @@
&& !$this->_cache_serials
&& $_gmt_mtime == $_last_modified_date) {
if (php_sapi_name()=='cgi')
- header("Status: 304 Not Modified");
+ header('Status: 304 Not Modified');
else
- header("HTTP/1.1 304 Not Modified");
+ header('HTTP/1.1 304 Not Modified');
} else {
- header("Last-Modified: ".$_gmt_mtime);
+ header('Last-Modified: '.$_gmt_mtime);
echo $_smarty_results;
}
} else {
@@ -1220,7 +1220,7 @@
} else {
$this->_cache_info['template'][$resource_name] = true;
if ($this->cache_modified_check && $display) {
- header("Last-Modified: ".gmdate('D, d M Y H:i:s', time()).' GMT');
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', time()).' GMT');
}
}
}
@@ -1632,7 +1632,7 @@
}
if ($params['resource_type'] == 'file') {
- if (!preg_match("/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/", $params['resource_name'])) {
+ if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $params['resource_name'])) {
// relative pathname to $params['resource_base_path']
// use the first directory where the file is found
foreach ((array)$params['resource_base_path'] as $_curr_path) {
@@ -1747,7 +1747,7 @@
if(isset($auto_source)) {
// make source name safe for filename
$_filename = urlencode(basename($auto_source));
- $_crc32 = sprintf("%08X", crc32($auto_source));
+ $_crc32 = sprintf('%08X', crc32($auto_source));
// prepend %% to avoid name conflicts with
// with $params['auto_id'] names
$_crc32 = substr($_crc32, 0, 2) . $_compile_dir_sep .
--
Smarty CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php