Changeset 217807
- Timestamp:
- 03/15/2010 05:58:50 PM (16 years ago)
- File:
-
- 1 edited
-
cyclopress/branches/cp2/classes/cyclopress.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cyclopress/branches/cp2/classes/cyclopress.php
r217805 r217807 25 25 // database tables 26 26 global $wpdb; 27 $this->rides_table = $ this->rides_table;28 $this->bikes_table = $ this->bikes_table;29 $this->charts_table = $ this->charts_table;30 $this->tags_table = $ this->tags_table;31 $this->ride_tags_table = $ this->ride_tags_table;27 $this->rides_table = $wpdb->prefix . 'cy_rides'; 28 $this->bikes_table = $wpdb->prefix . 'cy_bikes'; 29 $this->charts_table = $wpdb->prefix . 'cy_charts'; 30 $this->tags_table = $wpdb->prefix . 'cy_tags'; 31 $this->ride_tags_table = $wpdb->prefix . 'cy_ride_tags'; 32 32 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.