Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
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 | |||
44 | return $first; |
||
45 | } |
||
47 |