rule; $sql = "SELECT * FROM " . tablename('heka_reply') . " WHERE `rid`=:rid LIMIT 1"; $row = pdo_fetch($sql, array(':rid' => $rid)); if (empty($row['id'])) { return array(); } return $this->respNews(array( 'Title' => $row['title'], 'Description' => $row['description'], 'PicUrl' => empty($row['picture']) ? '' : ($_W['attachurl'] . $row['picture']), 'Url' => $this->createMobileUrl('index', array('id' => $rid)), )); } }