diff options
Diffstat (limited to 'www-ssl/admin/Recentchanges.php')
-rwxr-xr-x | www-ssl/admin/Recentchanges.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www-ssl/admin/Recentchanges.php b/www-ssl/admin/Recentchanges.php index 265dd18d..ec167e17 100755 --- a/www-ssl/admin/Recentchanges.php +++ b/www-ssl/admin/Recentchanges.php @@ -2,7 +2,7 @@ $title = "ChangeLog"; $header = "Datenbank-Auszug"; -include ("./inc/header.php"); +include ("../../includes/header.php"); $SQL = "SELECT * FROM `ChangeLog` ORDER BY `Time` DESC LIMIT 0,10000"; $Erg = mysql_query($SQL, $con); @@ -24,6 +24,6 @@ for ($n = 0 ; $n < mysql_num_rows($Erg) ; $n++) echo "</table>\n"; -include ("./inc/footer.php"); +include ("../../includes/footer.php"); ?> |