MyBB.de Forum

Normale Version: Kategorie zur Hilfeseite hinzufügen
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Hallo.

Im ACP hat man ja die Möglichkeit neue Hilfe - Kategorien und Hilfe - Seiten einzugeben.

Die neuen Kategorien werden im ACP auch angezeigt ..... die Seiten jedoch nicht.

Im Forum wird nichts neues angezeigt .

Woran kann das liegen ?
Öffne die Datei admin/helpdocs.php und suche nach:
PHP-Code:
if($mybb->input['add'] == "doc")
    {
        
$sqlarray = array(
            
"name" => addslashes($mybb->input['name']),
            
"description" => addslashes($mybb->input['description']),
            
"document" => addslashes($mybb->input['document']),
            
"usetranslation" => addslashes($mybb->input['usetranslation']),
            
"enabled" => addslashes($mybb->input['enabled']),
            
"disporder" => intval($mybb->input['disporder']),
            );
        
$db->insert_query(TABLE_PREFIX."helpdocs"$sqlarray);
        
cpredirect("helpdocs.php"$lang->doc_added);
    } 
Ersetzen durch:
PHP-Code:
if($mybb->input['add'] == "doc")
    {
        
$sqlarray = array(
            
"sid" => intval($mybb->input['sid']),
            
"name" => addslashes($mybb->input['name']),
            
"description" => addslashes($mybb->input['description']),
            
"document" => addslashes($mybb->input['document']),
            
"usetranslation" => addslashes($mybb->input['usetranslation']),
            
"enabled" => addslashes($mybb->input['enabled']),
            
"disporder" => intval($mybb->input['disporder']),
            );
        
$db->insert_query(TABLE_PREFIX."helpdocs"$sqlarray);
        
cpredirect("helpdocs.php"$lang->doc_added);
    } 
O.K. ..... Danke für die schnelle Hilfe [Bild: http://www.cosgan.de/images/midi/froehlich/a070.gif]

yep... funktioniert

Clock 10 Minuten Support-Zeit = Weltklasse Shy