Müssten noch ein paar mehr sein. Damit gehts.
<?php // nur bunt
$Sql = 'INSERT INTO `'.TABLE_PREFIX.'mod_'.$tablename.'` SET '
. '`section_id`= '.$section_id.' , '
. '`page_id`= '.$page_id.', '
. '`groups_id` = \'\', '
. '`active`= 1, '
. '`posted_first`= '.$t.', '
. '`posted_by`= '.$theuser.', '
. '`modified_by`= \'\', '
. '`authors`= '.$theuser.', '
. '`position`= '.$position.', '
. '`link` = \'\', '
. '`title` = \'\', '
. '`short_description`= \'\', '
. '`description`= \'\', '
. '`keywords`= \'\', '
. '`picture`= \'\', '
. '`is_master_for`= \'\', '
. '`content_short`= \'\', '
. '`content_long`= \'\', '
. '`content_extra`= \'\', '
. '`commenting`= '.$commenting.', '
. '`see_also`= \'\', '
. '`tagcloud`= \'\', '
. '`rating_base`= \'\', '
. '`txtr1`= \'\', '
. '`txtr2`= \'\', '
. '`txtr3`= \'\', '
. '`pnsa_cache` = \'\' ';
// $database->query($Sql);
if (!$database->query($Sql)){
$admin->print_error($database->get_error());
}