1. Import

This commit is contained in:
2026-03-29 10:34:57 +02:00
parent b0e00c1259
commit a1129565af
4899 changed files with 3007593 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?php
/*=======================================================================
*
* jb_list_fs.php (*** BWV ***)
*
* Autor: Marc Vollmann
*
=======================================================================*/
include_once ("../include/global.inc.php");
include_once ("../include/auth.inc.php");
// Check HTTP-Parameters
getSecHttpVars("1",array("maskNumOfWins", "useRemoteDB"));
if ($maskNumOfWins == "" || $maskNumOfWins == "0" || !is_numeric($maskNumOfWins)) : $maskNumOfWins = "3"; endif; // Number of frames = number of lists
$jobListParameter = "";
$frameNameExt = "";
if ($useRemoteDB != "") :
$jobListParameter = "&useRemoteDB=" . ec($useRemoteDB);
$frameNameExt = "1";
endif;
?>
<html>
<head>
<title>BWV FERNTOUREN</title>
</head>
<frameset rows="*,*,*,*" id="jb_list_fs<?php echo $frameNameExt ?>">
<frame src="jb_list.php?defaultListStatus=<?php echo ec("9") ?>&maskNumOfWin=<?php echo ec("1") ?>&maskNumOfWins=<?php echo $maskNumOfWins ?><?php echo $jobListParameter ?>" name="content1<?php echo $frameNameExt ?>" scrolling="yes" marginwidth="0" marginheight="0">
<frame src="jb_list.php?defaultListStatus=<?php echo ec("0") ?>&maskNumOfWin=<?php echo ec("2") ?>&maskNumOfWins=<?php echo $maskNumOfWins ?><?php echo $jobListParameter ?>" name="content2<?php echo $frameNameExt ?>" scrolling="yes" marginwidth="0" marginheight="0">
<frame src="jb_list.php?defaultListStatus=<?php echo ec("1") ?>&maskNumOfWin=<?php echo ec("3") ?>&maskNumOfWins=<?php echo $maskNumOfWins ?><?php echo $jobListParameter ?>" name="content3<?php echo $frameNameExt ?>" scrolling="yes" marginwidth="0" marginheight="0">
<frame src="jb_list.php?defaultListStatus=<?php echo ec("2") ?>&maskNumOfWin=<?php echo ec("4") ?>&maskNumOfWins=<?php echo $maskNumOfWins ?><?php echo $jobListParameter ?>" name="content4<?php echo $frameNameExt ?>" scrolling="yes" marginwidth="0" marginheight="0">
</frameset>
</html>