replace " with ' where literal strings are quoted (ever so slight speedup)

This commit is contained in:
mohrt
2004-07-14 21:31:29 +00:00
parent 3095e9ebfd
commit c6be541e7f

View File

@@ -263,7 +263,7 @@ class Smarty
* *
* @var string * @var string
*/ */
var $request_vars_order = "EGPCS"; var $request_vars_order = 'EGPCS';
/** /**
* Indicates wether $HTTP_*_VARS[] (request_use_auto_globals=false) * Indicates wether $HTTP_*_VARS[] (request_use_auto_globals=false)
@@ -1196,12 +1196,12 @@ class Smarty
&& !$this->_cache_serials && !$this->_cache_serials
&& $_gmt_mtime == $_last_modified_date) { && $_gmt_mtime == $_last_modified_date) {
if (php_sapi_name()=='cgi') if (php_sapi_name()=='cgi')
header("Status: 304 Not Modified"); header('Status: 304 Not Modified');
else else
header("HTTP/1.1 304 Not Modified"); header('HTTP/1.1 304 Not Modified');
} else { } else {
header("Last-Modified: ".$_gmt_mtime); header('Last-Modified: '.$_gmt_mtime);
echo $_smarty_results; echo $_smarty_results;
} }
} else { } else {
@@ -1220,7 +1220,7 @@ class Smarty
} else { } else {
$this->_cache_info['template'][$resource_name] = true; $this->_cache_info['template'][$resource_name] = true;
if ($this->cache_modified_check && $display) { 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 @@ class Smarty
} }
if ($params['resource_type'] == 'file') { 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'] // relative pathname to $params['resource_base_path']
// use the first directory where the file is found // use the first directory where the file is found
foreach ((array)$params['resource_base_path'] as $_curr_path) { foreach ((array)$params['resource_base_path'] as $_curr_path) {
@@ -1747,7 +1747,7 @@ class Smarty
if(isset($auto_source)) { if(isset($auto_source)) {
// make source name safe for filename // make source name safe for filename
$_filename = urlencode(basename($auto_source)); $_filename = urlencode(basename($auto_source));
$_crc32 = sprintf("%08X", crc32($auto_source)); $_crc32 = sprintf('%08X', crc32($auto_source));
// prepend %% to avoid name conflicts with // prepend %% to avoid name conflicts with
// with $params['auto_id'] names // with $params['auto_id'] names
$_crc32 = substr($_crc32, 0, 2) . $_compile_dir_sep . $_crc32 = substr($_crc32, 0, 2) . $_compile_dir_sep .