Hochladen aller Dateien des Projekts.

This commit is contained in:
2024-06-13 22:21:23 +02:00
parent 8af145816f
commit 2e0cd7dee3
650 changed files with 97218 additions and 0 deletions

25
system_redir_zum_dokument.php Executable file
View File

@@ -0,0 +1,25 @@
<?php
@session_start();
/*
Dieses Skript wird aufgerufen, wenn auf einen Link geklickt wurde und als Folge das Dokument gezeigt werden soll.
*/
require_once( "f_admin.php" );
require_once( "f_wfl.php" );
$dok_id = $_GET[ "dok_id" ] ;
xlog( 4, "system_redir_zum_dokument: ".$dok_id );
if ( strlen( $phpziel ) > 0 )
{
Header("Location: ".$phpziel.".php");
}
else
{
Header("Location: us_uebersicht.php?komme=".$dok_id );
}
?>