Browse Source

Fix for #211.

Signed-off-by: D9ping <D9ping@users.noreply.github.com>
pull/217/head
D9ping 5 years ago
parent
commit
a86c8e4553
  1. 6
      index.php

6
index.php

@ -51,10 +51,10 @@ if(!isset($_COOKIE['theme'])) {
} else {
$theme = $_COOKIE['theme'];
}
$theme_url = 'dist/css/' . $theme;
?>
<!DOCTYPE html>
$theme_url = 'dist/css/'.htmlspecialchars($theme, ENT_QUOTES);
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">

Loading…
Cancel
Save