Plugin Directory

Changeset 3117089


Ignore:
Timestamp:
07/12/2024 02:45:42 PM (21 months ago)
Author:
foxskav
Message:

1.0.7 fixed pa errors

Location:
easy-bet/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • easy-bet/trunk/easybet.php

    r3101722 r3117089  
    44    Plugin URI: easybet.foxskav.pl
    55    Description: Bet with Your friends matches. Typuj ze znajomymi wyniki meczy.
    6     Version: 1.0.6
     6    Version: 1.0.7
    77    Author: Foxskav
    88    Author URI: foxskav.pl
  • easy-bet/trunk/easybet_admin.php

    r3100584 r3117089  
    9494    public function easybet_select_team($id)
    9595    {
     96        global $wpdb;
    9697        $query = $wpdb->prepare("SELECT id,name,logo  from " . $this->tableteams . "
    9798        WHERE id = %d", $id);
     
    101102    public function easybet_select_stage($id)
    102103    {
     104        global $wpdb;
    103105        $query = $wpdb->prepare("SELECT id, name  from " . $this->tablestages . "
    104106        WHERE id = %d", $id);
     
    108110    public function easybet_select_league($id)
    109111    {
     112        global $wpdb;
    110113        $query = $wpdb->prepare("SELECT id, name  from " . $this->tableleagues . "
    111114        WHERE id = %d", $id);
     
    115118    public function easybet_select_place($id)
    116119    {
     120        global $wpdb;
    117121        $query = $wpdb->prepare("SELECT city, stadion  from " . $this->tableplaces . "
    118122        WHERE id = %d", $id);
     
    130134    public function easybet_betsall()
    131135    {
     136        global $wpdb;
    132137        $query = "SELECT ft.id_match, ft.id_user, ft.w_p1, ft.w_p2, u.display_name as user_nicename from " . $this->tablebets . " ft
    133138        Left join ". $this->tableusers ." u ON ( ft.id_user = u.ID )
     
    138143    public function deleteAll()
    139144    {
     145        global $wpdb;
    140146        $sql = "TRUNCATE TABLE " . $this->tableName;
    141147        $this->wpdb->query($sql);
  • easy-bet/trunk/readme.txt

    r3105959 r3117089  
    2020[Theme for Euro 2024](https://easybet.foxskav.pl/euro2024_easybet_theme.zip)<br/>
    2121<br/>
    22 [Theme for WC 2022 2020](https://easybet.foxskav.pl/wc2022_easybet_theme.zip)<br/>
     22[Theme for WC 2022](https://easybet.foxskav.pl/wc2022_easybet_theme.zip)<br/>
    2323<br/>
    2424[Theme for Euro 2020](https://easybet.foxskav.pl/euro2020_easybet_theme.zip)<br/>
Note: See TracChangeset for help on using the changeset viewer.