=========================== */ ?> ejecutarConsulta("SELECT * FROM ".Table_prefix."config")) { $row=$this->obtenerRegistro(); $this->tablePrefix = Table_prefix; $this->urlGelato = $row['url_installation']; $this->postLimit = $row['posts_limit']; $this->title = $row['title']; $this->description = $row['description']; $this->lang = $row['lang']; $this->template = $row['template']; initLang($this->lang); $this->urlFriendly = $this->get_option("url_friendly"); $this->richText = $this->get_option("rich_text"); $this->offsetCity = $this->get_option("offset_city"); $this->offsetTime = $this->get_option("offset_time"); $this->allowComments = $this->get_option("allow_comments"); $this->shorten_links = $this->get_option("shorten_links"); $this->rssImportFrec = $this->get_option("rss_import_frec"); $this->check_version = $this->get_option("check_version"); } else { if($isFeed) { header("HTTP/1.0 503 Service Unavailable"); header("Retry-After: 60"); exit(); } else { $message = "

Error establishing a database connection

The configuration info is not available.

"; die($message); } } } function get_option($name){ $sql = "SELECT * FROM ".Table_prefix."options WHERE name='".$name."' LIMIT 1"; $this->ejecutarConsulta($sql); if ($this->contarRegistros()>0) { $row=$this->obtenerRegistro(); return $row['val']; } else { return "0"; } } } ?>