Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
1 | <? |
||
8 | public static function getMissingTweets() |
||
9 | { |
||
10 | $query = "SELECT `id`, `date` FROM `jpemeric_stream`.`twitter` WHERE `id` NOT IN (SELECT `type_id` FROM `jpemeric_stream`.`post` WHERE `type` = 'twitter') && (`is_reply` = '0' || `retweets` > '0' || `favorites` > '0')"; |
||
11 | return self::run_query($query); |
||
12 | } |
||
13 | |||
26 | } |
Short opening tags are disabled in PHP’s default configuration. In such a case, all content of this file is output verbatim to the browser without being parsed, or executed.
As a precaution to avoid these problems better use the long opening tag
<?php
.