1
0
Fork 0
chickadee/site_actions.php

27 lines
666 B
PHP
Raw Permalink Normal View History

2023-12-21 04:40:05 +00:00
<?php
include_once "logcheck.php";
$simplecss = $_POST["simplecss"] ?? null;
if ( !is_null( $simplecss ) ) {
2023-12-21 04:40:05 +00:00
$file_data = file_get_contents( "config.php" );
if ( !$file_data ) {
header("Location: admin.php?success=0");
2023-12-21 04:40:05 +00:00
die();
}
$re = '/(const\s+SIMPLE_CSS\s+=\s+)(true|false)(\s*;)/m';
$subst = $simplecss == "1" ? "$1true$3" : "$1false$3";
2023-12-21 04:40:05 +00:00
$result = preg_replace($re, $subst, $file_data);
$success = file_put_contents( "config.php", $result );
2023-12-21 04:40:05 +00:00
if ( $success ) {
header("Location: admin.php?success=2");
2023-12-21 04:40:05 +00:00
die();
} else {
header("Location: admin.php?success=0");
2023-12-21 04:40:05 +00:00
die();
}
}
header("Location: admin.php");
2023-12-21 04:40:05 +00:00
die();