@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | Loader::load('collector', 'portfolio/PortfolioCollector'); |
37 | 37 | $portfolio_result = PortfolioCollector::getPieceByURI($this->title_url); |
38 | 38 | |
39 | - if($portfolio_result === null) |
|
39 | + if ($portfolio_result === null) |
|
40 | 40 | $this->eject(); |
41 | 41 | |
42 | 42 | $portfolio_image_result = PortfolioCollector::getImagesForPiece($portfolio_result->id, 2); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $main_image->width = $dimensions[0]; |
52 | 52 | $main_image->height = $dimensions[1]; |
53 | 53 | |
54 | - foreach($portfolio_image_result as $portfolio_image) |
|
54 | + foreach ($portfolio_image_result as $portfolio_image) |
|
55 | 55 | { |
56 | 56 | $thumb = $portfolio_image->name; |
57 | 57 | $thumb_array = explode('.', $thumb); |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | |
73 | 73 | $portfolio_tag_result = PortfolioCollector::getTagsForPiece($portfolio_result->id); |
74 | 74 | |
75 | - foreach($portfolio_tag_result as $portfolio_tag) |
|
75 | + foreach ($portfolio_tag_result as $portfolio_tag) |
|
76 | 76 | { |
77 | 77 | $tag_array[] = $portfolio_tag->name; |
78 | 78 | } |
@@ -26,15 +26,15 @@ discard block |
||
26 | 26 | |
27 | 27 | public function activate() |
28 | 28 | { |
29 | - if(!Request::hasPost()) |
|
29 | + if (!Request::hasPost()) |
|
30 | 30 | return false; |
31 | - if(!Request::getPost('submit') == 'Submit Comment') |
|
31 | + if (!Request::getPost('submit') == 'Submit Comment') |
|
32 | 32 | return false; |
33 | 33 | |
34 | 34 | $errors = $this->fetch_errors(); |
35 | - if(count($errors) > 0) |
|
35 | + if (count($errors) > 0) |
|
36 | 36 | return $errors; |
37 | - if(Request::getPost('catch') !== '') |
|
37 | + if (Request::getPost('catch') !== '') |
|
38 | 38 | return false; |
39 | 39 | |
40 | 40 | $page_id = $this->save_comment_page(); |
@@ -50,17 +50,17 @@ discard block |
||
50 | 50 | private function fetch_errors() |
51 | 51 | { |
52 | 52 | $errors = array(); |
53 | - if(!Validate::checkRequest('post', 'name', 'name')) |
|
53 | + if (!Validate::checkRequest('post', 'name', 'name')) |
|
54 | 54 | $errors['name'] = 'You must include a valid name'; |
55 | - if(!Validate::checkRequest('post', 'email', 'email')) |
|
55 | + if (!Validate::checkRequest('post', 'email', 'email')) |
|
56 | 56 | $errors['email'] = 'You must include a valid email'; |
57 | - if(Request::getPost('website') && !Validate::checkRequest('post', 'website', 'url')) |
|
57 | + if (Request::getPost('website') && !Validate::checkRequest('post', 'website', 'url')) |
|
58 | 58 | $errors['website'] = 'Please enter a valid website'; |
59 | - if(!Validate::checkRequest('post', 'comment', 'string')) |
|
59 | + if (!Validate::checkRequest('post', 'comment', 'string')) |
|
60 | 60 | $errors['comment'] = 'You must enter a comment'; |
61 | - if(Request::getPost('notify') && Request::getPost('notify') != 'check') |
|
61 | + if (Request::getPost('notify') && Request::getPost('notify') != 'check') |
|
62 | 62 | $errors['notify'] = 'You entered an invalid notify request'; |
63 | - if(Request::getPost('reply') && !Validate::checkRequest('post', 'reply', 'integer')) |
|
63 | + if (Request::getPost('reply') && !Validate::checkRequest('post', 'reply', 'integer')) |
|
64 | 64 | $errors['reply'] = 'You entered an invalid reply request'; |
65 | 65 | |
66 | 66 | return $errors; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | private function save_comment_page() |
70 | 70 | { |
71 | 71 | $page_result = CommentCollector::getCommentPageByURL($this->path, $this->site); |
72 | - if($page_result !== null) |
|
72 | + if ($page_result !== null) |
|
73 | 73 | return $page_result->id; |
74 | 74 | |
75 | 75 | $query = "INSERT INTO `jpemeric_comment`.`comment_page` (`site`, `path`) VALUES ('%d', '%s')"; |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | 'name' => Request::getPost('name'), |
86 | 86 | 'email' => Request::getPost('email')); |
87 | 87 | |
88 | - if(Request::getPost('website') != '') |
|
88 | + if (Request::getPost('website') != '') |
|
89 | 89 | $cookie_value['website'] = Request::getPost('website'); |
90 | 90 | |
91 | 91 | $cookie_value = json_encode($cookie_value); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | ->save(); |
96 | 96 | |
97 | 97 | $commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website')); |
98 | - if($commenter_result !== null) |
|
98 | + if ($commenter_result !== null) |
|
99 | 99 | return $commenter_result->id; |
100 | 100 | |
101 | 101 | $query = "INSERT INTO `jpemeric_comment`.`commenter` (`name`,`email`,`url`) VALUES ('%s','%s','%s')"; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | private function save_comment() |
113 | 113 | { |
114 | 114 | $comment_result = CommentCollector::getCommentByBody(Request::getPost('comment')); |
115 | - if($comment_result !== null) |
|
115 | + if ($comment_result !== null) |
|
116 | 116 | return $comment_result->id; |
117 | 117 | |
118 | 118 | $query = "INSERT INTO `jpemeric_comment`.`comment` (`body`, `body_format`) VALUES ('%s', '%s')"; |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | $query = "INSERT INTO `jpemeric_comment`.`comment_meta` (`commenter`,`comment`,`reply`,`notify`,`comment_page`,`date`,`display`) VALUES ('%d','%d','%d','%d','%d','%s','%d')"; |
134 | 134 | |
135 | 135 | $reply = Database::escape(Request::getPost('type')); |
136 | - if($reply == 'new') |
|
136 | + if ($reply == 'new') |
|
137 | 137 | $reply = 0; |
138 | 138 | // else check to make sure value is legit |
139 | 139 | |
@@ -157,13 +157,13 @@ discard block |
||
157 | 157 | |
158 | 158 | $commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website')); |
159 | 159 | |
160 | - if($commenter_result->trusted == 1) |
|
160 | + if ($commenter_result->trusted == 1) |
|
161 | 161 | { |
162 | 162 | $notification_result = CommentCollector::getNotificationForPage($page); |
163 | 163 | |
164 | - foreach($notification_result as $notification_row) |
|
164 | + foreach ($notification_result as $notification_row) |
|
165 | 165 | { |
166 | - if($notification_row->email == Request::getPost('email')) |
|
166 | + if ($notification_row->email == Request::getPost('email')) |
|
167 | 167 | continue; |
168 | 168 | |
169 | 169 | $email_recipient_array[$notification_row->email] = array( |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | $message = "Hello!\nThere has been a new comment on the page '{$this->page_title}' at Waterfalls of the Keweenaw. You have chosen to be notified of it - please reply to [email protected] if you would like to be removed from these notifications.\n\nOn " . date('F j, Y g:i a') . ", " . Request::getPost('name') . " commented...\n" . Request::getPost('comment') . "\n\nVisit {$this->full_path}#comments to see and reply to all the comments on this post.\nThank you!"; |
181 | 181 | } |
182 | 182 | |
183 | - foreach($email_recipient_array as $email_recipient) |
|
183 | + foreach ($email_recipient_array as $email_recipient) |
|
184 | 184 | { |
185 | 185 | $mail = new Mail(); |
186 | 186 | $mail->setToAddress($email_recipient['email'], $email_recipient['name']); |
@@ -9,7 +9,7 @@ |
||
9 | 9 | |
10 | 10 | public function __construct($user_agent = null) |
11 | 11 | { |
12 | - if(!isset($user_agent)) |
|
12 | + if (!isset($user_agent)) |
|
13 | 13 | $user_agent = Request::getServer('HTTP_USER_AGENT'); |
14 | 14 | $this->user_agent = $user_agent; |
15 | 15 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | $mysqli = new mysqli($host, $username, $password); |
37 | 37 | |
38 | 38 | $has_connection_error = $mysqli->connect_error; |
39 | - if(isset($has_connection_error)) |
|
39 | + if (isset($has_connection_error)) |
|
40 | 40 | $this->has_connection_error = true; |
41 | 41 | |
42 | 42 | return $mysqli; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | public static function instance() |
46 | 46 | { |
47 | - if(!isset(self::$instance)) { |
|
47 | + if (!isset(self::$instance)) { |
|
48 | 48 | global $config; |
49 | 49 | self::$instance = new Database( |
50 | 50 | $config->database->master, |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | public static function select($query) |
64 | 64 | { |
65 | 65 | $start = microtime(true); |
66 | - if($result = self::instance()->read_connection->query($query)) |
|
66 | + if ($result = self::instance()->read_connection->query($query)) |
|
67 | 67 | { |
68 | 68 | self::instance()->log_query($query, $start); |
69 | 69 | $array = array(); |
70 | - while($row = $result->fetch_object()) |
|
70 | + while ($row = $result->fetch_object()) |
|
71 | 71 | $array[] = $row; |
72 | 72 | $result->close(); |
73 | 73 | return $array; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public static function selectRow($query) |
80 | 80 | { |
81 | 81 | $result = self::select($query); |
82 | - if(is_array($result)) |
|
82 | + if (is_array($result)) |
|
83 | 83 | return array_pop($result); |
84 | 84 | return false; |
85 | 85 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | public static function execute($query) |
88 | 88 | { |
89 | 89 | $start = microtime(true); |
90 | - if(self::instance()->write_connection->query($query)) |
|
90 | + if (self::instance()->write_connection->query($query)) |
|
91 | 91 | { |
92 | 92 | self::instance()->log_query($query, $start); |
93 | 93 | return true; |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | public static function lastInsertID() |
100 | 100 | { |
101 | 101 | $id = self::instance()->write_connection->insert_id; |
102 | - if($id == 0) |
|
102 | + if ($id == 0) |
|
103 | 103 | return false; |
104 | 104 | return $id; |
105 | 105 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | private function gather_query_data() |
120 | 120 | { |
121 | 121 | $query_data = array(); |
122 | - foreach($this->query_log as $query) |
|
122 | + foreach ($this->query_log as $query) |
|
123 | 123 | { |
124 | 124 | $query = self::explain($query); |
125 | 125 | $query_data[] = $query; |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | { |
132 | 132 | $sql = 'EXPLAIN ' . $query['sql']; |
133 | 133 | |
134 | - if($result = self::instance()->read_connection->query($sql)) |
|
134 | + if ($result = self::instance()->read_connection->query($sql)) |
|
135 | 135 | { |
136 | 136 | $row = $result->fetch_assoc(); |
137 | 137 | $query['explain'] = $row; |
@@ -6,8 +6,8 @@ |
||
6 | 6 | { |
7 | 7 | |
8 | 8 | private static $COOKIE_NAME = 'commenter'; |
9 | - private static $COOKIE_DURATION = 31536000; // one year |
|
10 | - private static $COOKIE_DOMAIN = 'jacobemerick.com'; |
|
9 | + private static $COOKIE_DURATION = 31536000; // one year |
|
10 | + private static $COOKIE_DOMAIN = 'jacobemerick.com'; |
|
11 | 11 | private static $COOKIE_PATH = '/'; |
12 | 12 | |
13 | 13 | protected function getName() |
@@ -17,14 +17,14 @@ discard block |
||
17 | 17 | |
18 | 18 | public static function instance() |
19 | 19 | { |
20 | - if(!isset(self::$instance)) |
|
20 | + if (!isset(self::$instance)) |
|
21 | 21 | self::$instance = new Loader(); |
22 | 22 | return self::$instance; |
23 | 23 | } |
24 | 24 | |
25 | 25 | private function get_root() |
26 | 26 | { |
27 | - if(!isset($this->root)) |
|
27 | + if (!isset($this->root)) |
|
28 | 28 | { |
29 | 29 | $current_directory = dirname(__FILE__); |
30 | 30 | $current_directory = substr($current_directory, 0, -7); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | private static function get_extension($type) |
54 | 54 | { |
55 | - switch($type) |
|
55 | + switch ($type) |
|
56 | 56 | { |
57 | 57 | case 'collector' : |
58 | 58 | case 'controller' : |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | public static function getImagePath($type, $file) |
73 | 73 | { |
74 | - if($type == 'photo') |
|
74 | + if ($type == 'photo') |
|
75 | 75 | $type = 'photo/processed'; |
76 | 76 | |
77 | 77 | $path = self::instance()->get_root(); |
@@ -107,18 +107,18 @@ discard block |
||
107 | 107 | |
108 | 108 | public static function load($type, $files, $data = array()) |
109 | 109 | { |
110 | - foreach((array) $files as $file) |
|
110 | + foreach ((array) $files as $file) |
|
111 | 111 | { |
112 | 112 | $file_path = self::instance()->get_path($type, $file); |
113 | - if(in_array($file_path, self::instance()->get_included_files()) && $type !== 'view') |
|
113 | + if (in_array($file_path, self::instance()->get_included_files()) && $type !== 'view') |
|
114 | 114 | continue; |
115 | 115 | |
116 | - if(!file_exists($file_path)) |
|
116 | + if (!file_exists($file_path)) |
|
117 | 117 | Debugger::logMessage("Requested file does not exist: {$type}, {$file}"); |
118 | 118 | |
119 | 119 | self::instance()->add_included_file($file_path); |
120 | 120 | |
121 | - switch($type) |
|
121 | + switch ($type) |
|
122 | 122 | { |
123 | 123 | case 'images' : |
124 | 124 | case 'scripts' : |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | |
149 | 149 | $reflectionObject = self::create_reflection_class($file); |
150 | 150 | |
151 | - if( |
|
151 | + if ( |
|
152 | 152 | $reflectionObject->hasMethod('instance') && |
153 | 153 | $reflectionObject->getMethod('instance')->isStatic()) |
154 | 154 | { |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | |
164 | 164 | $reflectionObject = self::create_reflection_class($file); |
165 | 165 | |
166 | - if($reflectionObject->hasMethod('__construct')) |
|
166 | + if ($reflectionObject->hasMethod('__construct')) |
|
167 | 167 | return $reflectionObject->newInstanceArgs($data); |
168 | 168 | else |
169 | 169 | return $reflectionObject->newInstance(); |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | static private function form_url_array($host, $uri) |
16 | 16 | { |
17 | 17 | $uri = substr($uri, 1); |
18 | - if(strpos($uri, '?')) |
|
18 | + if (strpos($uri, '?')) |
|
19 | 19 | $uri = substr($uri, 0, strpos($uri, '?')); |
20 | 20 | $uri_array = explode('/', $uri); |
21 | 21 | |
22 | - if(!Loader::isLive()) |
|
22 | + if (!Loader::isLive()) |
|
23 | 23 | $host = substr($host, strpos($host, '.') + 1); |
24 | 24 | |
25 | 25 | self::$array['host'] = $host; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | self::$array['base'] = 'http://' . (!Loader::isLive() ? 'dev.' : '') . $host . '/'; |
34 | 34 | self::$array['uri'] = '/' . implode('/', $uri_array); |
35 | 35 | |
36 | - if(end($uri_array) == '') |
|
36 | + if (end($uri_array) == '') |
|
37 | 37 | $uri_array = array_slice($uri_array, 0, count($uri_array) - 1); |
38 | 38 | self::$array['pieces'] = (array) $uri_array; |
39 | 39 | } |
@@ -61,21 +61,21 @@ discard block |
||
61 | 61 | static function getExtension() |
62 | 62 | { |
63 | 63 | $file = self::getPiece(-1); |
64 | - if(substr($file, -1) == '/') |
|
64 | + if (substr($file, -1) == '/') |
|
65 | 65 | return false; |
66 | - return substr($file, strrpos($file, '.') + 1);; |
|
66 | + return substr($file, strrpos($file, '.') + 1); ; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | static function getPiece($piece = null) |
70 | 70 | { |
71 | - if(!$piece) |
|
71 | + if (!$piece) |
|
72 | 72 | return self::$array['pieces']; |
73 | 73 | |
74 | - if($piece == -1) |
|
74 | + if ($piece == -1) |
|
75 | 75 | return end(self::$array['pieces']); |
76 | 76 | |
77 | 77 | $piece = $piece - 1; |
78 | - if(array_key_exists($piece, self::$array['pieces'])) |
|
78 | + if (array_key_exists($piece, self::$array['pieces'])) |
|
79 | 79 | return self::$array['pieces'][$piece]; |
80 | 80 | return; |
81 | 81 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | public function setValue($value) |
23 | 23 | { |
24 | - if(!$this->is_loaded) |
|
24 | + if (!$this->is_loaded) |
|
25 | 25 | $this->load(); |
26 | 26 | |
27 | 27 | $this->value = $value; |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | public function getValue() |
32 | 32 | { |
33 | - if(!$this->is_loaded) |
|
33 | + if (!$this->is_loaded) |
|
34 | 34 | $this->load(); |
35 | 35 | return $this->value; |
36 | 36 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | public function exists() |
44 | 44 | { |
45 | - if(!$this->is_loaded) |
|
45 | + if (!$this->is_loaded) |
|
46 | 46 | $this->load(); |
47 | 47 | return $this->exists; |
48 | 48 | } |
@@ -50,10 +50,10 @@ discard block |
||
50 | 50 | private final function load() |
51 | 51 | { |
52 | 52 | $name = $this->getName(); |
53 | - if(isset($_COOKIE[$name])) |
|
53 | + if (isset($_COOKIE[$name])) |
|
54 | 54 | $value = $_COOKIE[$name]; |
55 | 55 | |
56 | - if(isset($value)) |
|
56 | + if (isset($value)) |
|
57 | 57 | { |
58 | 58 | $this->value = $value; |
59 | 59 | $this->exists = true; |
@@ -66,13 +66,13 @@ discard block |
||
66 | 66 | |
67 | 67 | public final function save() |
68 | 68 | { |
69 | - if(!$this->check_values()) |
|
69 | + if (!$this->check_values()) |
|
70 | 70 | { |
71 | 71 | Debugger::error('Attempt to create a cookie without all of the values being set!'); |
72 | 72 | return false; |
73 | 73 | } |
74 | 74 | |
75 | - if(!$this->set_cookie()) |
|
75 | + if (!$this->set_cookie()) |
|
76 | 76 | { |
77 | 77 | Debugger::log('There was a problem saving the cookie.'); |
78 | 78 | return false; |
@@ -84,23 +84,23 @@ discard block |
||
84 | 84 | private final function check_values() |
85 | 85 | { |
86 | 86 | $name = $this->getName(); |
87 | - if(empty($name) || strlen($name) < 1) |
|
87 | + if (empty($name) || strlen($name) < 1) |
|
88 | 88 | return false; |
89 | 89 | |
90 | 90 | $value = $this->getValue(); |
91 | - if(!isset($value) || strlen($value) < 1) |
|
91 | + if (!isset($value) || strlen($value) < 1) |
|
92 | 92 | return false; |
93 | 93 | |
94 | 94 | $expiration = $this->getExpiration(); |
95 | - if(!isset($expiration) || !is_int($expiration)) |
|
95 | + if (!isset($expiration) || !is_int($expiration)) |
|
96 | 96 | return false; |
97 | 97 | |
98 | 98 | $domain = $this->getDomain(); |
99 | - if(!isset($domain) || strlen($domain) < 1) |
|
99 | + if (!isset($domain) || strlen($domain) < 1) |
|
100 | 100 | return false; |
101 | 101 | |
102 | 102 | $path = $this->getPath(); |
103 | - if(!isset($path) || strlen($path) < 1) |
|
103 | + if (!isset($path) || strlen($path) < 1) |
|
104 | 104 | return false; |
105 | 105 | |
106 | 106 | return true; |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | public static function instance() |
28 | 28 | { |
29 | - if(!isset(self::$instance)) |
|
29 | + if (!isset(self::$instance)) |
|
30 | 30 | self::$instance = new Visitor(); |
31 | 31 | return self::$instance; |
32 | 32 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | public static function getBrowser() |
36 | 36 | { |
37 | 37 | Loader::load('utility', 'environment/BrowserEnvironment'); |
38 | - if(!isset(self::instance()->browser)) |
|
38 | + if (!isset(self::instance()->browser)) |
|
39 | 39 | self::instance()->browser = new BrowserEnvironment(); |
40 | 40 | return self::instance()->browser; |
41 | 41 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | public static function getPlatform() |
45 | 45 | { |
46 | 46 | Loader::load('utility', 'environment/PlatformEnvironment'); |
47 | - if(!isset(self::instance()->platform)) |
|
47 | + if (!isset(self::instance()->platform)) |
|
48 | 48 | self::instance()->platform = new PlatformEnvironment(); |
49 | 49 | return self::instance()->platform; |
50 | 50 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | public static function getIP() |
54 | 54 | { |
55 | 55 | Loader::load('utility', 'Request'); |
56 | - if(!isset(self::instance()->ip_address)) |
|
56 | + if (!isset(self::instance()->ip_address)) |
|
57 | 57 | self::instance()->ip_address = Request::getServer('REMOTE_ADDR'); |
58 | 58 | return self::instance()->ip_address; |
59 | 59 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | Loader::loadInstance('utility', 'Database'); |
80 | 80 | |
81 | 81 | $query = $this->get_tracking_query(); |
82 | - if(Database::execute($query) == true) |
|
82 | + if (Database::execute($query) == true) |
|
83 | 83 | { |
84 | 84 | $this->raw_visit_log_id = Database::lastInsertID(); |
85 | 85 | return true; |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | $columns = '`'; |
96 | 96 | $values = "'"; |
97 | - foreach(self::$tracking_field_array as $field_column => $server_array_key) |
|
97 | + foreach (self::$tracking_field_array as $field_column => $server_array_key) |
|
98 | 98 | { |
99 | 99 | $value = Request::getServer($server_array_key); |
100 | 100 | $value = Database::escape($value); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | $values .= "{$value}','"; |
104 | 104 | } |
105 | 105 | |
106 | - if(Request::hasPost()) |
|
106 | + if (Request::hasPost()) |
|
107 | 107 | { |
108 | 108 | $value = Request::getPost(); |
109 | 109 | $value = serialize($value); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | private function track_response_error($code) |
123 | 123 | { |
124 | - if(isset($this->raw_visit_log_id) && $this->raw_visit_log_id > 0) |
|
124 | + if (isset($this->raw_visit_log_id) && $this->raw_visit_log_id > 0) |
|
125 | 125 | { |
126 | 126 | $query = "UPDATE `jpemeric_stat`.`raw_visit_log` SET `code` = '{$code}' WHERE `id` = '{$this->raw_visit_log_id}' LIMIT 1"; |
127 | 127 | return Database::execute($query); |