/**
  * Set the config value
  * $value will usually be empty so reload config value with user ID
  *
  * @param string $value
  * @return $this
  */
 public function setValue($value)
 {
     if (!$value) {
         $value = Mage::getStoreConfig($this->_updatePath()->getPath());
     }
     return parent::setValue($value);
 }