|
|
Latest News |
Latest Threads |
|
|
55.080 Posts & 4.945 Themen in 78 Foren |
|
|
|
|
Forensuche |
|
Suchbegriff |
Benutzerauswahl |
Ergebnisse anzeigen |
|
|
Kommentare erst freischalten 5 Beiträge in diesem Thema |
|
|
|
|
|
13.10.2018 - 19:31 Uhr |
|
|
|
Könnte man einen zusatz im acp einbinden, das Gäste zwar Kommentare posten können, diese aber von mir freigeschaltet werden müssen?
😊
|
|
|
|
|
|
|
|
|
|
19.10.2018 - 18:11 Uhr |
|
|
|
Nabend,
blub - siehe Anhang u. o. Anleitung unten.
--
Erklärung:
Im AdminCenter > Sonstiges > Kommentaren gibt es nun 3 neue Buttons im Kopf-Bereich:
- Neue Kommentare
- Freigegebene Kommentare
- Alle Kommentare
Diese dienen als Filter.
Jeder Kommentar hat nun auch einen neuen Button:
- Sperren
oder
- Freischalten
Neben den Änderungen der Dateien muss die Datenbank erweitert werden.
Dazu wird die Tabelle _comment mit der Spalte comment_status hinzugefügt.
Dafür ist die Datei Install_CommentStatus.php im Ordner pkinc/public/.
Um die Installations auszuführen einfach folgende Adresse aufrufen:
| PHP-Quelltext www.DeineWebseite.de/?path=Install_CommentStatus | |
Es erscheint ein kleines De-/Installations-Menu. Einfach auf "Installieren" bzw. "Deinstallieren" klicken.
Dieses Menu erscheint nur für den Haupt-Admin (ID = 1).
--
Bilder:
https://abload.de/img/201810191900-cs1mdcpy.png
https://abload.de/img/201810191900-cs22tdw9.png
https://abload.de/img/201810191900-cs3g4fso.png
--
Anleitung:
Hier klicken zum aufklappen- pkinc/admin/comment.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext $entries=(isset($_REQUEST['entries']) && intval($_REQUEST['entries'])>0) ? intval($_REQUEST['entries']) : 0; | |
Und füge darunter das ein:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | | PHP-Quelltext # CommentStatus::Start
$comIsINSTALL
=
$SQL->Fetch_Assoc($SQL->Query("SELECT comment_status FROM ".pkSQLTAB_COMMENT))===NULL
? FALSE
: TRUE
;
If ($comIsINSTALL===TRUE)
{
$comStatusGET
=
IsSet ($_GET['status'])
? Intval($_GET['status'])
: NULL
;
$comStatusID
=
IsSet ($_GET['statusid'])
&& Intval($_GET['statusid']) > 0
? Intval($_GET['statusid'])
: 0
;
If ($comStatusGET===0) #close
{
$comStatusPAGELINK ='&status='.$comStatusGET;
$comStatusSQL =' WHERE comment_status=\''.$SQL->i($comStatusGET).'\'';
$comStatusCSS0 ='background: #ffff00;';
$comStatusCSS1 ='background: #cccccc;';
$comStatusCSSA ='background: #cccccc;';
}
ElseIf ($comStatusGET===1) #release
{
$comStatusPAGELINK ='&status='.$comStatusGET;
$comStatusSQL =' WHERE comment_status=\''.$SQL->i($comStatusGET).'\'';
$comStatusCSS0 ='background: #cccccc;';
$comStatusCSS1 ='background: #ffff00;';
$comStatusCSSA ='background: #cccccc;';
}
Else #all
{
$comStatusPAGELINK =NULL;
$comStatusSQL =NULL;
$comStatusCSS0 ='background: #cccccc;';
$comStatusCSS1 ='background: #cccccc;';
$comStatusCSSA ='background: #ffff00;';
}
If ($comStatusID > 0)
{
$GetStatus =$SQL->Fetch_Assoc($SQL->Query("SELECT comment_status FROM ".pkSQLTAB_COMMENT." WHERE comment_id='".$SQL->i($comStatusID)."'"));
$GetStatus
=
Intval($GetStatus['comment_status'])===1
? 0
: 1
;
$SQL->Query("UPDATE ".pkSQLTAB_COMMENT." SET comment_status='".$SQL->i($GetStatus)."' WHERE comment_id='".$SQL->i($comStatusID)."'");
pkHeaderLocation('comment','','entries='.$entries.$comStatusPAGELINK);
}
eval("\$comment_status_head= \"".pkTpl("comment_status_head")."\";");
}
# CommentStatus::End | | |
- Suche weiter
| PHP-Quelltext if($deleteid)
{
$SQL->query("DELETE FROM ".pkSQLTAB_COMMENT." WHERE comment_id='".$deleteid."'"); | |
Und füge darunter das ein:
| PHP-Quelltext # CommentStatus::Start
If ($comIsINSTALL===TRUE)
{
If ($comStatusGET!==NULL)
{
$entries.=$comStatusPAGELINK;
}
}
# CommentStatus::End | |
- Suche weiter
| PHP-Quelltext if($editid)
{
if($ACTION==$_POST['save'] || $ACTION==$_POST['cancel'])
{
if($ACTION==$_POST['save'])
$SQL->query("UPDATE ".pkSQLTAB_COMMENT."
SET comment_autor='".$SQL->f($_POST['comment_autor'])."',
comment_text='".$SQL->f($_POST['comment_text'])."'
WHERE comment_id='".$editid."'"); | |
Und füge darunter das ein:
| PHP-Quelltext # CommentStatus::Start
If ($comIsINSTALL===TRUE)
{
If ($comStatusGET!==NULL)
{
$entries.=$comStatusPAGELINK;
}
}
# CommentStatus::End | |
- Suche weiter
| PHP-Quelltext $counter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT));
$getcomments=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT." ORDER by comment_time DESC LIMIT ".$entries.",".$epp); | |
Und ersetze das mit:
| PHP-Quelltext # CommentStatus::Start
/*
$counter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT));
$getcomments=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT." ORDER by comment_time DESC LIMIT ".$entries.",".$epp);
*/
If ($comIsINSTALL===TRUE)
{
$counter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT.$comStatusSQL));
$getcomments=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT.$comStatusSQL." ORDER by comment_time DESC LIMIT ".$entries.",".$epp);
}
Else
{
$counter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT));
$getcomments=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT." ORDER by comment_time DESC LIMIT ".$entries.",".$epp);
}
# CommentStatus::End | |
- Suche weiter
| PHP-Quelltext if($commentinfo[comment_cat]=="vote")
$comment_link="path=pollarchive&vid=".$commentinfo['comment_subid'];
else
$comment_link="path=comment"; | |
Und füge darunter das ein:
| PHP-Quelltext # CommentStatus::Start
If ($comIsINSTALL===TRUE)
{
If (Intval($commentinfo['comment_status'])===0)
{
eval("\$comment_status= \"".pkTpl("comment_row_status_release")."\";");
}
Else
{
eval("\$comment_status= \"".pkTpl("comment_row_status_close")."\";");
}
}
# CommentStatus::End | |
- Suche weiter
| PHP-Quelltext $page_link=sidelinkfull($counter[0],$epp,$entries,"include.php?path=comment"); | |
Und ersetze das mit:
| PHP-Quelltext # CommentStatus::Start
/*
$page_link=sidelinkfull($counter[0],$epp,$entries,"include.php?path=comment");
*/
If ($comIsINSTALL===TRUE)
{
$page_link=sidelinkfull($counter[0],$epp,$entries,"include.php?path=comment".$comStatusPAGELINK);
}
Else
{
$page_link=sidelinkfull($counter[0],$epp,$entries,"include.php?path=comment");
}
# CommentStatus::End | |
- pkinc/admintpl/comment.htm
- Öffne o.g. Datei und suche das:
| PHP-Quelltext <td width="65%"><font class="small">$page_link</font></td>
<td align="right" width="35%" nowrap> | |
Und füge darunter das ein:
| PHP-Quelltext <!-- # CommentStatus::Start -->
$comment_status_head
<!-- # CommentStatus::End --> | |
- pkinc/admintpl/comment_status_head.htm
- Erstelle o.g. Datei (vorhandene .htm-Datei kopieren und wie oben umbenennen) und mit folgenden Inhalt füllen:
| PHP-Quelltext <!-- # CommentStatus::Start -->
<a href="?path=comment&status=0" style="border: 1px solid black; padding: 2px 7px; text-decoration: none; $comStatusCSS0">Neue Kommentare</a>
|
<a href="?path=comment&status=1" style="border: 1px solid black; padding: 2px 7px; text-decoration: none; $comStatusCSS1">Freigegebene Kommentare</a>
|
<a href="?path=comment" style="border: 1px solid black; padding: 2px 7px; text-decoration: none; $comStatusCSSA">Alle Kommentare</a>
<!-- # CommentStatus::End --> | |
- pkinc/admintpl/comment_row.htm
- Öffne o.g. Datei und suche das:
| PHP-Quelltext <td width="95%"><font class="small">$comment_time | <b>IP:</b> $comment_ip | geschrieben von: $comment_autor</font></td>
<td width="5%" align="right" nowrap><b> | |
Und füge darunter das ein:
| PHP-Quelltext <!-- # CommentStatus::Start -->
$comment_status
<!-- # CommentStatus::End --> | |
- pkinc/admintpl/comment_row_status_close.htm
- Erstelle o.g. Datei (vorhandene .htm-Datei kopieren und wie oben umbenennen) und mit folgenden Inhalt füllen:
| PHP-Quelltext <a class="small" style="border: 1px solid black; padding: 2px 7px; text-decoration: none; background: #888888; color: white; font-weight: normal;" href="?path=comment&statusid=$commentinfo[comment_id]&entries=$entries$comStatusPAGELINK">Sperren</a> | |
- pkinc/admintpl/comment_row_status_release.htm
- Erstelle o.g. Datei (vorhandene .htm-Datei kopieren und wie oben umbenennen) und mit folgenden Inhalt füllen:
| PHP-Quelltext <a class="small" style="border: 1px solid black; padding: 2px 7px; text-decoration: none; background: yellow; font-weight: normal;" href="?path=comment&statusid=$commentinfo[comment_id]&entries=$entries$comStatusPAGELINK">Freischalten</a> | |
- pkinc/public/comment.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext $comcat = (isset($_REQUEST['comcat']) && in_array($_REQUEST['comcat'],$comcathash)) ? $_REQUEST['comcat'] : (isset($comcat) && in_array($comcat,$comcathash) ? $comcat : '');
$subid = (isset($_REQUEST['subid']) && intval($_REQUEST['subid'])>0) ? intval($_REQUEST['subid']) : (isset($subid) && intval($subid)>0 ? intval($subid) : 0);
$ACTION = isset($_POST['action']) ? $_POST['action'] : 'view'; | |
Und füge darunter das ein:
| PHP-Quelltext # CommentStatus::Start
$comIsINSTALL
=
$SQL->Fetch_Assoc($SQL->Query("SELECT comment_status FROM ".pkSQLTAB_COMMENT))===NULL
? FALSE
: TRUE
;
# CommentStatus::End | |
- Suche weiter
| PHP-Quelltext $infocount=$SQL->fetch_array($SQL->query("SELECT COUNT(*)
FROM ".pkSQLTAB_COMMENT."
WHERE comment_ip='".$SQL->f($ENV->getvar('REMOTE_ADDR'))."' AND
comment_subid='".intval($_POST['subid'])."' AND
comment_userid='".intval(pkGetUservalue('id'))."' AND
comment_time>'".$floodcontrol."'
LIMIT 1")); | |
Und ersetze das mit:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | | PHP-Quelltext # CommentStatus::Start
/*
$infocount=$SQL->fetch_array($SQL->query("SELECT COUNT(*)
FROM ".pkSQLTAB_COMMENT."
WHERE comment_ip='".$SQL->f($ENV->getvar('REMOTE_ADDR'))."' AND
comment_subid='".intval($_POST['subid'])."' AND
comment_userid='".intval(pkGetUservalue('id'))."' AND
comment_time>'".$floodcontrol."'
LIMIT 1"));
*/
If ($comIsINSTALL===TRUE)
{
$infocount=$SQL->fetch_array($SQL->query("SELECT COUNT(*)
FROM ".pkSQLTAB_COMMENT."
WHERE comment_ip='".$SQL->f($ENV->getvar('REMOTE_ADDR'))."' AND
comment_subid='".intval($_POST['subid'])."' AND
comment_userid='".intval(pkGetUservalue('id'))."' AND
comment_time>'".$floodcontrol."' AND
comment_status='1'
LIMIT 1"));
}
Else
{
$infocount=$SQL->fetch_array($SQL->query("SELECT COUNT(*)
FROM ".pkSQLTAB_COMMENT."
WHERE comment_ip='".$SQL->f($ENV->getvar('REMOTE_ADDR'))."' AND
comment_subid='".intval($_POST['subid'])."' AND
comment_userid='".intval(pkGetUservalue('id'))."' AND
comment_time>'".$floodcontrol."'
LIMIT 1"));
}
# CommentStatus::End | | |
- Suche weiter
| PHP-Quelltext $ccounter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'")); | |
Und ersetze das mit:
| PHP-Quelltext # CommentStatus::Start
/*
$ccounter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'"));
*/
If ($comIsINSTALL===TRUE)
{
$ccounter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."' and comment_status='1'"));
}
Else
{
$ccounter=$SQL->fetch_array($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'"));
}
# CommentStatus::End | |
- Suche weiter
| PHP-Quelltext $getcomment=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT." where comment_subid='".$SQL->f($subid)."' and comment_cat='".$SQL->f($comcat)."' ORDER BY comment_time ".$comment_order); | |
Und ersetze das mit:
| PHP-Quelltext # CommentStatus::Start
/*
$getcomment=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT." where comment_subid='".$SQL->f($subid)."' and comment_cat='".$SQL->f($comcat)."' ORDER BY comment_time ".$comment_order);
*/
If ($comIsINSTALL===TRUE)
{
$getcomment=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT." where comment_subid='".$SQL->f($subid)."' and comment_cat='".$SQL->f($comcat)."' AND comment_status='1' ORDER BY comment_time ".$comment_order);
}
Else
{
$getcomment=$SQL->query("SELECT * FROM ".pkSQLTAB_COMMENT." where comment_subid='".$SQL->f($subid)."' and comment_cat='".$SQL->f($comcat)."' ORDER BY comment_time ".$comment_order);
}
# CommentStatus::End | |
- pkinc/public/guestbook.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'")); | |
Und ersetze das mit:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | | PHP-Quelltext # CommentStatus::Start
/*
list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'"));
*/
$comIsINSTALL
=
$SQL->Fetch_Assoc($SQL->Query("SELECT comment_status FROM ".pkSQLTAB_COMMENT))===NULL
? FALSE
: TRUE
;
If ($comIsINSTALL===TRUE)
{
list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."' and comment_status='1'"));
}
Else
{
list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'"));
}
# CommentStatus::End | |
- Suche weiter
| PHP-Quelltext list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'")); | |
Und ersetze das mit:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | | PHP-Quelltext # CommentStatus::Start
/*
list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'"));
*/
$comIsINSTALL
=
$SQL->Fetch_Assoc($SQL->Query("SELECT comment_status FROM ".pkSQLTAB_COMMENT))===NULL
? FALSE
: TRUE
;
If ($comIsINSTALL===TRUE)
{
list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."' and comment_status='1'"));
}
Else
{
list($ccounter)=$SQL->fetch_row($SQL->query("SELECT COUNT(*) FROM ".pkSQLTAB_COMMENT." WHERE comment_cat='gb' and comment_subid='".$gbookinfo['gbook_id']."'"));
}
# CommentStatus::End | |
- pkinc/public/Install_CommentStatus.php
- Erstelle o.g. Datei (vorhandene .php-Datei kopieren und wie oben umbenennen) und mit folgenden Inhalt füllen:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | | PHP-Quelltext <?PHP
If (!Defined('pkFRONTEND') || pkFRONTEND!='public')
{
Die('Direct access to this location is not permitted.');
}
If (Intval(pkGetUservalue('id'))!==1)
{
pkEvent('page_not_found');
Return;
}
$Public['Install'] =NULL;
$Public['DeInstall']=NULL;
$SQLQueryIsInstall =NULL;
If (IsSet($_POST) && !Empty($_POST))
{
$SQLQueryIsInstall
=
$SQL->Fetch_Assoc(
$SQL->Query("
SELECT
comment_status
FROM
".pkSQLPREFIX."_comment
"));
# Install
If (IsSet($_POST['Install']))
{
If ($SQLQueryIsInstall===NULL)
{
$Public['Install']
=
"
ALTER TABLE ".pkSQLPREFIX."_comment ADD comment_status INT(1) UNSIGNED NOT NULL
";
$Public['Install']
=
$SQL->Query($Public['Install'])
? TRUE
: FALSE
;
}
Else
{
$Public['Install']='';
}
}
# DeInstall
If (IsSet($_POST['DeInstall']))
{
If ($SQLQueryIsInstall!==NULL)
{
$Public['DeInstall']
=
$SQL->Query("ALTER TABLE ".pkSQLPREFIX."_comment DROP comment_status")
? TRUE
: FALSE
;
}
Else
{
$Public['DeInstall']='';
}
}
UnSet($SQLQueryIsInstall);
}
?>
<Table Class="standard" Border="0" CellSpacing="1" CellPadding="4" Width="100%">
<TR>
<TD Class="heads">PHPKIT ( 1.6.6. ) » CommentStatus » De/Installation</TD>
</TR>
<TR>
<TD Class="standard" align="center">
<Form Action="?path=<?PHP Echo $path; ?>" Method="Post">
<Input Type="Submit" Name="Install" Value="Installieren" />
<Input Type="Submit" Name="DeInstall" Value="Deinstallieren" />
</Form>
<BR />
<?PHP If (IsSet($Public['Install'])): ?>
Installation:
<BR />
<?PHP If ($Public['Install']===TRUE): ?>
<Span Style="Color: Green;">Die Spalte "comment_status" wurde erfolgreich der Tabelle "<?PHP Echo pkSQLPREFIX."_comment"; ?>" hinzugefügt.</Span>
<?PHP ElseIf ($Public['Install']===FALSE): ?>
<Span Style="Color: Red;">Die Spalte "comment_status" wurde nicht in die Tabelle "<?PHP Echo pkSQLPREFIX."_comment"; ?>" hinzugefügt.</Span>
<BR />
<?PHP $SQL->error(); ?>
<?PHP Else: ?>
<Span Style="">Die Spalte "comment_status" wurde bereits der Tabelle "<?PHP Echo pkSQLPREFIX."_comment"; ?>" hinzugefügt.</Span>
<?PHP EndIf; ?>
<BR />
<?PHP EndIf; ?>
<?PHP If (IsSet($Public['DeInstall'])): ?>
Deinstallation:
<BR />
<?PHP If ($Public['DeInstall']===TRUE): ?>
<Span Style="Color: Green;">Die Spalte "comment_status" wurde erfolgreich aus der Tabelle "<?PHP Echo pkSQLPREFIX."_comment"; ?>" wurde entfernt.</Span>
<?PHP ElseIf ($Public['DeInstall']===FALSE): ?>
<Span Style="Color: Red;">Die Spalte "comment_status" in der Tabelle "<?PHP Echo pkSQLPREFIX."_comment"; ?>" wurde nicht gelöscht.</Span>
<BR />
<?PHP $SQL->error(); ?>
<?PHP Else: ?>
<Span Style="">Die Spalte "comment_status" wurde bereits aus der Tabelle "<?PHP Echo pkSQLPREFIX."_comment"; ?>" gelöscht.</Span>
<?PHP EndIf; ?>
<BR />
<?PHP EndIf; ?>
</TD>
</TR>
</Table> | | |
'
|
|
|
|
|
|
|
|
|
|
20.10.2018 - 10:38 Uhr |
|
|
|
danke dir erst mal, aber woher weist du denn, dass ich die Dateien nicht schon mal bearbeitet hatte? Weil du schon fertige Dateien hochgeladen hat, nicht das nachher da irgendwas nicht mehr stimmt
|
|
|
|
|
|
|
|
|
|
22.10.2018 - 03:56 Uhr |
|
|
|
Das weiss ich nicht Die Dateien bzw. die Anleitung basiert auf den ungeänderten Zustand ( wie immer halt ;p ).
Wenn in den Dateien bereits Änderungen vorhanden sind, einfach nach dem Suchen:
| PHP-Quelltext # CommentStatus::Start
# CommentStatus::End | |
|
|
|
|
|
|
|
|
|
|
24.10.2018 - 09:09 Uhr |
|
|
|
|
|
|
|
Ähnliche Themen |
|
|
|
|
|
|
|
|