| Server IP : 172.64.80.1 / Your IP : 216.73.216.175 Web Server : LiteSpeed System : Linux srv13.swhc.ca 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : hongluck ( 2522) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/hongluck/public_html/old site/webcal/ |
Upload File : |
<?php
include_once 'includes/init.php';
$error = "";
$updating_public = false;;
if ( $is_admin && ! empty ( $public ) && $public_access == "Y" ) {
$updating_public = true;
$prefuser = "__public__";
} elseif (($user != $login) && ($is_admin || $is_nonuser_admin)) {
$prefuser = "$user";
} else {
$prefuser = "$login";
}
while ( list ( $key, $value ) = each ( $HTTP_POST_VARS ) ) {
$setting = substr ( $key, 5 );
$prefix = substr ( $key, 0, 5 );
if ( $key == 'user' )
continue;
// validate key name. should start with "pref_" and not include
// any unusual characters that might cause SQL injection
if ( ! preg_match ( '/pref_[A-Za-z0-9_]+$/', $key ) ) {
die_miserable_death ( 'Invalid admin setting name "' .
$key . '"' );
}
//echo "Setting = $setting, key = $key, prefix = $prefix <br />\n";
if ( strlen ( $setting ) > 0 && $prefix == "pref_" ) {
$sql =
"DELETE FROM webcal_user_pref WHERE cal_login = '$prefuser' " .
"AND cal_setting = '$setting'";
dbi_query ( $sql );
if ( strlen ( $value ) > 0 ) {
$sql = "INSERT INTO webcal_user_pref " .
"( cal_login, cal_setting, cal_value ) VALUES " .
"( '$prefuser', '$setting', '$value' )";
if ( ! dbi_query ( $sql ) ) {
$error = "Unable to update preference: " . dbi_error () .
"<br /><br /><span style=\"font-weight:bold;\">SQL:</span> $sql";
break;
}
}
}
}
if ( empty ( $error ) ) {
if ( $updating_public ) {
do_redirect ( "pref.php?public=1" );
} elseif (($is_admin || $is_nonuser_admin) && $login != $user ) {
do_redirect ( "pref.php?user=$user" );
} else {
do_redirect ( "pref.php" );
}
}
print_header();
?>
<h2><?php etranslate("Error")?></h2>
<?php etranslate("The following error occurred")?>:
<blockquote>
<?php echo $error; ?>
</blockquote>
<?php print_trailer(); ?>
</body>
</html>