Changeset 211906
- Timestamp:
- 03/01/2010 04:20:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
file-proxy/trunk/com/twothirdsdesign/core/gcp_options.php
r210743 r211906 8 8 class GcpOptions 9 9 { 10 const VERSION = '1.0. 1';10 const VERSION = '1.0.2'; 11 11 protected $options_key = 'ttd_plugin_options'; 12 12 protected $_options = array( … … 26 26 { 27 27 // tries to create a cache from wordpress DB options table.// uses plugin preset options not in db 28 $this->_optioncache = get_option( $this->options_key);28 $this->_optioncache = unserialize( get_option( $this->options_key, NULL )); 29 29 if (!$this->_optioncache) $this->_optioncache = $this->_options; 30 30 }
Note: See TracChangeset
for help on using the changeset viewer.