Changeset 2027 for sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications-sqlite-driver.php
- Timestamp:
- 11/02/2015 05:33:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications-sqlite-driver.php
r2026 r2027 37 37 public function get_var( $query ) { 38 38 if ( $q = $this->db->query( $query ) ) { 39 return $q->fetchColumn(); 39 $var = $q->fetchColumn(); 40 if ( $var !== false ) { 41 return $var; 42 } 40 43 } 44 return null; 41 45 } 42 46
Note: See TracChangeset
for help on using the changeset viewer.