Plugin Directory

Changeset 729582


Ignore:
Timestamp:
06/21/2013 08:25:45 PM (13 years ago)
Author:
atvdev
Message:

Minor bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • amazon-s3-uploads/trunk/plugin/asssu/__init.php

    r729295 r729582  
    6868        # na kano prepare
    6969        $this->config = $this->db->wpdb->get_row('SELECT * FROM '.$this->db->table.' WHERE site_url like "'.$this->site_url.'"', ARRAY_A);
    70         $this->config['is_active'] = $this->config['is_active'] === '1';
     70        if (isset($this->config['is_active']))
     71            $this->config['is_active'] = $this->config['is_active'] === '1';
    7172        ob_end_clean();
    7273        $this->check_version();
Note: See TracChangeset for help on using the changeset viewer.