| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function get_first_order() |
||
| 35 | { |
||
| 36 | // Get first order id... |
||
| 37 | $sql = 'SELECT cat_order, cat_id |
||
| 38 | FROM ' . $this->table_prefix . 'smilies_category |
||
| 39 | ORDER BY cat_order ASC'; |
||
| 40 | $result = $this->db->sql_query_limit($sql, 1); |
||
| 41 | $first = (int) $this->db->sql_fetchfield('cat_id'); |
||
| 42 | $this->db->sql_freeresult($result); |
||
| 43 | $first = !$first ? 9998 : $first; |
||
| 44 | |||
| 45 | return $first; |
||
| 46 | } |
||
| 48 |