@@ -95,7 +95,7 @@ |
||
| 95 | 95 | |
| 96 | 96 | $statement = $this->database->prepare($query); |
| 97 | 97 | $statement->bindValue(":username", $this->user->getUsername()); |
| 98 | - $statement->bindValue(":date", date('Y-m-d') . "%"); |
|
| 98 | + $statement->bindValue(":date", date('Y-m-d')."%"); |
|
| 99 | 99 | $statement->execute(); |
| 100 | 100 | $today = $statement->fetchColumn(); |
| 101 | 101 | $statement->closeCursor(); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | $substr = mb_substr($string, 0, 1); |
| 13 | 13 | $substr2 = mb_substr($string, 1, $strlen - 1); |
| 14 | 14 | $upstring = mb_strtoupper($substr); |
| 15 | - $ustring = $upstring . $substr2; |
|
| 15 | + $ustring = $upstring.$substr2; |
|
| 16 | 16 | return $ustring; |
| 17 | 17 | } |
| 18 | 18 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | catch (PDOException $ex) { |
| 53 | 53 | // wrap around any potential stack traces which may include passwords |
| 54 | - throw new Exception("Error connecting to database '$connectionName': " . $ex->getMessage()); |
|
| 54 | + throw new Exception("Error connecting to database '$connectionName': ".$ex->getMessage()); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | $databaseObject->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | ); |
| 186 | 186 | } |
| 187 | 187 | catch (Exception $ex) { |
| 188 | - trigger_error("Error logging query. Disabling for this request. " . $ex->getMessage(), E_USER_NOTICE); |
|
| 188 | + trigger_error("Error logging query. Disabling for this request. ".$ex->getMessage(), E_USER_NOTICE); |
|
| 189 | 189 | $enableQueryLog = false; |
| 190 | 190 | } |
| 191 | 191 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | { |
| 19 | 19 | global $smarty, $filepath; |
| 20 | 20 | |
| 21 | - $files = scandir($filepath . "/includes/statistics/"); |
|
| 21 | + $files = scandir($filepath."/includes/statistics/"); |
|
| 22 | 22 | |
| 23 | 23 | $statsPageDefinitions = preg_grep("/php$/", $files); |
| 24 | 24 | |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | foreach ($statsPageDefinitions as $i) { |
| 28 | 28 | // TODO: is this require still needed? AutoLoader ftw. |
| 29 | - require_once($filepath . "/includes/statistics/" . $i); |
|
| 29 | + require_once($filepath."/includes/statistics/".$i); |
|
| 30 | 30 | $expld = explode('.', $i); |
| 31 | 31 | $className = $expld[0]; |
| 32 | 32 | |
@@ -180,8 +180,8 @@ discard block |
||
| 180 | 180 | |
| 181 | 181 | $out .= '>'; |
| 182 | 182 | |
| 183 | - $out .= '<td>' . $rowno . '</td>'; |
|
| 184 | - $out .= '<td>' . $row['COUNT(*)'] . '</td>'; |
|
| 183 | + $out .= '<td>'.$rowno.'</td>'; |
|
| 184 | + $out .= '<td>'.$row['COUNT(*)'].'</td>'; |
|
| 185 | 185 | |
| 186 | 186 | global $baseurl; |
| 187 | 187 | $out .= '<td><a '; |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | $out .= 'class="text-success" '; |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - $out .= 'href="' . $baseurl . '/statistics.php?page=Users&user=' . $row['user_id'] . '">' . $row['log_user'] . '</a></td>'; |
|
| 196 | + $out .= 'href="'.$baseurl.'/statistics.php?page=Users&user='.$row['user_id'].'">'.$row['log_user'].'</a></td>'; |
|
| 197 | 197 | |
| 198 | 198 | $out .= '</tr>'; |
| 199 | 199 | |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | global $showGraphs; |
| 35 | 35 | if ($showGraphs == 1) { |
| 36 | 36 | global $filepath; |
| 37 | - require_once($filepath . 'graph/pChart/pChart.class'); |
|
| 38 | - require_once($filepath . 'graph/pChart/pData.class'); |
|
| 37 | + require_once($filepath.'graph/pChart/pChart.class'); |
|
| 38 | + require_once($filepath.'graph/pChart/pData.class'); |
|
| 39 | 39 | |
| 40 | 40 | $queries = array(); |
| 41 | 41 | |
@@ -135,14 +135,14 @@ discard block |
||
| 135 | 135 | ORDER BY YEAR(timestamp) , MONTH(timestamp) ASC; |
| 136 | 136 | SQL |
| 137 | 137 | , |
| 138 | - 'series' => "Requests deferred to " . $state['deferto'] . " by month" |
|
| 138 | + 'series' => "Requests deferred to ".$state['deferto']." by month" |
|
| 139 | 139 | ); |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | global $baseurl; |
| 143 | 143 | foreach ($this->createClosuresGraph($queries) as $i) { |
| 144 | 144 | |
| 145 | - $out .= '<img src="' . $baseurl . '/render/' . $i[0] . '" alt="' . $i[1] . '"/>'; |
|
| 145 | + $out .= '<img src="'.$baseurl.'/render/'.$i[0].'" alt="'.$i[1].'"/>'; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | } |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | // Finish the graph |
| 217 | 217 | $Test->setFontProperties("graph/Fonts/tahoma.ttf", 10); |
| 218 | 218 | $Test->drawTitle(50, 22, $q['series'], 50, 50, 50, 585); |
| 219 | - $Test->Render("render/" . $chartname); |
|
| 219 | + $Test->Render("render/".$chartname); |
|
| 220 | 220 | } |
| 221 | 221 | } |
| 222 | 222 | } |
@@ -232,11 +232,11 @@ discard block |
||
| 232 | 232 | private function createPathFromHash($imghash, $basedirectory = "render/") |
| 233 | 233 | { |
| 234 | 234 | $imghashparts = str_split($imghash); |
| 235 | - $imgpath = array_shift($imghashparts) . "/"; |
|
| 236 | - $imgpath .= array_shift($imghashparts) . "/"; |
|
| 237 | - $imgpath .= array_shift($imghashparts) . "/"; |
|
| 235 | + $imgpath = array_shift($imghashparts)."/"; |
|
| 236 | + $imgpath .= array_shift($imghashparts)."/"; |
|
| 237 | + $imgpath .= array_shift($imghashparts)."/"; |
|
| 238 | 238 | |
| 239 | - is_dir($basedirectory . $imgpath) || mkdir($basedirectory . $imgpath, 0777, true); |
|
| 239 | + is_dir($basedirectory.$imgpath) || mkdir($basedirectory.$imgpath, 0777, true); |
|
| 240 | 240 | |
| 241 | 241 | $imgpath .= implode("", $imghashparts); |
| 242 | 242 | return $imgpath; |
@@ -87,10 +87,10 @@ |
||
| 87 | 87 | $out .= "<td>"; |
| 88 | 88 | |
| 89 | 89 | if ($colid == 0) { |
| 90 | - $out .= "<a href=\"" . $baseurl . "/acc.php?action=zoom&id=" . $cell . "\">"; |
|
| 90 | + $out .= "<a href=\"".$baseurl."/acc.php?action=zoom&id=".$cell."\">"; |
|
| 91 | 91 | } |
| 92 | 92 | if ($colid == 1) { |
| 93 | - $out .= "<a href=\"" . $baseurl . "/statistics.php/Users?user=" . $row[++$colid] . "\">"; |
|
| 93 | + $out .= "<a href=\"".$baseurl."/statistics.php/Users?user=".$row[++$colid]."\">"; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | $out .= $cell; |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | // Generates a new host name by means of the IP array and TOR string. |
| 63 | - $ahbladdr = $p['3'] . "." . $p['2'] . "." . $p['1'] . "." . $p['0'] . "." . "tor.ahbl.org"; |
|
| 63 | + $ahbladdr = $p['3'].".".$p['2'].".".$p['1'].".".$p['0']."."."tor.ahbl.org"; |
|
| 64 | 64 | |
| 65 | 65 | // Get the IP address corresponding to a given host name. |
| 66 | 66 | $ahbl = gethostbyname($ahbladdr); |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public static function getById($id, PdoDatabase $database) |
| 53 | 53 | { |
| 54 | - $statement = $database->prepare("SELECT * FROM `" . strtolower(get_called_class()) . "` WHERE id = :id LIMIT 1;"); |
|
| 54 | + $statement = $database->prepare("SELECT * FROM `".strtolower(get_called_class())."` WHERE id = :id LIMIT 1;"); |
|
| 55 | 55 | $statement->bindValue(":id", $id); |
| 56 | 56 | |
| 57 | 57 | $statement->execute(); |
@@ -98,6 +98,6 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | public function getObjectDescription() |
| 100 | 100 | { |
| 101 | - return '[' . get_called_class() . " " . $this->getId() . ']'; |
|
| 101 | + return '['.get_called_class()." ".$this->getId().']'; |
|
| 102 | 102 | } |
| 103 | 103 | } |