diff options
Diffstat (limited to 'site/download')
-rw-r--r-- | site/download/index.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/site/download/index.php b/site/download/index.php index 24cad9a..eb2d441 100644 --- a/site/download/index.php +++ b/site/download/index.php @@ -18,14 +18,14 @@ */ header('Content-type: text/html; charset=utf-8'); ob_start(); - include_once "../variables.php"; - include_once "../functions.php"; + include_once "../common/variables.php"; + include_once "../common/functions.php"; ?> <!DOCTYPE html> <html> <head> <style type="text/css"> - <?php echo miniCss(file_get_contents("../css/main.css")); ?> + <?php echo miniCss(file_get_contents("../common/css/main.css")); ?> </style> <title><?php echo gettext("Download libreboot"); ?></title> </head> @@ -274,7 +274,7 @@ </div> <?php - include "../footer.php"; + include "../common/footer.php"; ?> </body> |