plugin('Attachment')->domain; $cid = intval($this->request->get("cid")); $attach = $db->fetchRow($db->select()->from('table.contents')->where('type = \'attachment\' AND cid = ?', $cid)); if (empty($attach)) { throw new Typecho_Widget_Exception(_t('附件文件不存在或无法读取,请与管理员联系。')); } $attach_text = unserialize($attach['text']); $attach_url = Typecho_Common::url($attach_text['path'], ($domain ? $domain : $options->index)); if (isset($options->plugins['activated']['Stat'])) { Stat_Plugin::viewStat($cid); } $this->response->redirect($attach_url); } }