Skip to content

Commit

Permalink
Add lang
Browse files Browse the repository at this point in the history
  • Loading branch information
lewmilburn authored Jun 2, 2024
1 parent cca59c0 commit 400ee1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Processes/DefaultViews/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
$Page = $DBMS->Query("SELECT * FROM `".DB_PREFIX."pages` WHERE `url` = '".$DBMS->Escape($_SERVER['REQUEST_URI'])."';");
$PageData = $Page->fetch_object();
?><!DOCTYPE html>
<html>
<html lang="<?= WEBSITE_LANGUAGE; ?>">
<head>
<title><?= $PageData->title; ?></title>
</head>
<body>
<?= $PageData->content; ?>
</body>
</html>
</html>

0 comments on commit 400ee1d

Please sign in to comment.