-projects (0.1-%BUILD%) unstable; urgency=medium
+projects (0.2-%BUILD%) unstable; urgency=medium
+ * debian12-Anpassungen
+ -- Michael Wagner <info@wagnertech.de> Wen, 10 Jul 2024 20:03:04 +0100
+
+projects (0.1) unstable; urgency=medium
* initial version
-- Michael Wagner <info@wagnertech.de> Sat, 06 Jun 2020 20:03:04 +0100
class VNAdministration extends GenericAdmin {
- function VNAdministration() {
+ function __construct() {
// Generic Administration configuration data
include 'Verleihnix/impl/GenadData.php';
parent::setDscrData($mocd_tab, $atdc_tab);
$requestMethod = $_SERVER["REQUEST_METHOD"];
$logger->log(__FILE__, $requestMethod);
$logger->log(__FILE__, "GET-Variabeles:");
-while ( list($key, $value) = each($_GET) ) {
+foreach ( $_GET as $key => $value) {
$logger->log(__FILE__, $key . " : " . $value);;
}
$logger->log(__FILE__, "POST-Variabeles:");
-while ( list($key, $value) = each($_POST) ) {
+foreach ( $_POST as $key => $value) {
$logger->log(__FILE__, $key . " : " . $value);;
}
$logger->log(__FILE__,"Redirect-URL:".$_SERVER["REDIRECT_URL"]);