@@ -337,7 +337,7 @@ |
||
| 337 | 337 | |
| 338 | 338 | $result = $this->get_var("SELECT count(*) FROM $table;"); |
| 339 | 339 | |
| 340 | - return intval($result) ;// not max limit on 32 bit systems 2147483647; on 64 bit 999999999999 |
|
| 340 | + return intval($result); // not max limit on 32 bit systems 2147483647; on 64 bit 999999999999 |
|
| 341 | 341 | |
| 342 | 342 | } |
| 343 | 343 | |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | try { |
| 97 | 97 | mkdir($path); |
| 98 | 98 | chmod($path, 0777); |
| 99 | - }catch(Exception $e){ |
|
| 99 | + }catch (Exception $e) { |
|
| 100 | 100 | //silent catch |
| 101 | 101 | } |
| 102 | 102 | } |
@@ -172,7 +172,7 @@ |
||
| 172 | 172 | |
| 173 | 173 | $property = str_replace("get_", "", $property); |
| 174 | 174 | |
| 175 | - if(property_exists($this, $property)){ |
|
| 175 | + if (property_exists($this, $property)) { |
|
| 176 | 176 | return $this->$property; |
| 177 | 177 | } |
| 178 | 178 | } |