Updated to latest version of CMS

This commit is contained in:
genuineparts 2025-06-23 20:45:15 +02:00
parent ccdf8fbb81
commit edf41b1198
76 changed files with 465 additions and 1162 deletions

View file

@ -10,9 +10,9 @@ class module_text extends admin_module{
function get_info(){
$info["name"]="Textverwaltung";
$info["file"]="text";
$info["author"]="astat";
$info["author"]="BeCast";
$info["version"]="1.0.1";
$info["url"]="http://www.astat.org";
$info["url"]="http://www.becast.at";
return $info;
}
@ -36,7 +36,7 @@ class module_text extends admin_module{
KEY `eid` (`eid`)
) ENGINE=MyISAM");
$db->query("CREATE TABLE IF NOT EXISTS `" . $config["prefix"] . "article_categorys` (
$db->query("CREATE TABLE IF NOT EXISTS `" . $config["prefix"] . "article_categories` (
`id` int(11) NOT NULL auto_increment,
`categoryname` varchar(80) NOT NULL default '',
`picture` varchar(80) NOT NULL default '',
@ -68,7 +68,7 @@ class module_text extends admin_module{
function uninstall(){
global $config, $db;
$db->query("DROP TABLE `" . $config["prefix"] . "article`");
$db->query("DROP TABLE `" . $config["prefix"] . "article_categorys`");
$db->query("DROP TABLE `" . $config["prefix"] . "article_categories`");
$db->query("DROP TABLE `" . $config["prefix"] . "article_category`");
$db->query("DROP TABLE `" . $config["prefix"] . "article_menue`");
@$this->recursive($_SERVER["DOCUMENT_ROOT"]."/catimages");