From 7ddd9521b3f3a397da3b0a6b56238d31414eb4be Mon Sep 17 00:00:00 2001 From: brettp Date: Thu, 28 Oct 2010 19:17:36 +0000 Subject: Standardized code in all of core, not including language files, tests, or core mods. git-svn-id: http://code.elgg.org/elgg/trunk@7124 36083f99-b078-4883-b0ff-0f9b5a30f544 --- simplecache/view.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'simplecache') diff --git a/simplecache/view.php b/simplecache/view.php index 541d1470d..bdfec45a7 100644 --- a/simplecache/view.php +++ b/simplecache/view.php @@ -8,7 +8,7 @@ */ // Get DB settings, connect -require_once(dirname(dirname(__FILE__)). '/engine/settings.php'); +require_once(dirname(dirname(__FILE__)) . '/engine/settings.php'); global $CONFIG, $viewinput, $override; if (!isset($override)) { @@ -21,18 +21,20 @@ if (!isset($viewinput)) { $viewinput = $_GET; } -if ($mysql_dblink = @mysql_connect($CONFIG->dbhost,$CONFIG->dbuser,$CONFIG->dbpass, true)) { +if ($mysql_dblink = @mysql_connect($CONFIG->dbhost, $CONFIG->dbuser, $CONFIG->dbpass, true)) { $view_name = $viewinput['view']; $viewtype = $viewinput['viewtype']; if (empty($viewtype)) { $viewtype = 'default'; } - if (@mysql_select_db($CONFIG->dbname,$mysql_dblink)) { + if (@mysql_select_db($CONFIG->dbname, $mysql_dblink)) { // get dataroot and simplecache_enabled in one select for efficiency $simplecache_enabled = true; if (!isset($dataroot)) { - if ($result = mysql_query("select name, value from {$CONFIG->dbprefix}datalists where name in ('dataroot','simplecache_enabled')",$mysql_dblink)) { + $query = "select name, value from {$CONFIG->dbprefix}datalists + where name in ('dataroot', 'simplecache_enabled')"; + if ($result = mysql_query($query, $mysql_dblink)) { $row = mysql_fetch_object($result); while ($row) { @@ -51,7 +53,10 @@ if ($mysql_dblink = @mysql_connect($CONFIG->dbhost,$CONFIG->dbuser,$CONFIG->dbpa if (file_exists($filename)) { $contents = file_get_contents($filename); } else { - mysql_query("INSERT into {$CONFIG->dbprefix}datalists set name = 'simplecache_lastupdate_$viewtype', value = '0' ON DUPLICATE KEY UPDATE value='0'"); + $query = "INSERT into {$CONFIG->dbprefix}datalists + set name = 'simplecache_lastupdate_$viewtype', + value = '0' ON DUPLICATE KEY UPDATE value='0'"; + mysql_query($query); } } } @@ -68,6 +73,6 @@ header("Content-Length: " . strlen($contents)); $split_output = str_split($contents, 1024); -foreach($split_output as $chunk) { +foreach ($split_output as $chunk) { echo $chunk; } -- cgit v1.2.3