Plugin Directory

Changeset 217807


Ignore:
Timestamp:
03/15/2010 05:58:50 PM (16 years ago)
Author:
anukit
Message:

oops

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cyclopress/branches/cp2/classes/cyclopress.php

    r217805 r217807  
    2525        // database tables
    2626        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';
    3232   
    3333    }
Note: See TracChangeset for help on using the changeset viewer.