Hmm..selbst im Queltext finde ich nichts..
<script language="JavaScript" type="text/javascript">
<!--
function setufocus() {
document.f.q.focus();
}
// manage div ...
document.onmousemove = checkPosition;
function checkPosition(e) {
if(document.all) {
mausX = event.clientX + document.body.scrollLeft;
mausY = event.clientY + document.body.scrollTop;
} else {
mausX = e.pageX;
mausY = e.pageY;
}
}
function alertpos(dname) {
if (document.layers) {
document.layers[0].left = mausX;
document.layers[0].top = mausY;
} else if (document.getElementById) {
document.getElementById(dname).style.left = (mausX + 10) + "px";
document.getElementById(dname).style.top = (mausY + 50 ) + "px";
}
document.getElementById(dname).style.display = "inline";
}
function hiddpos(dname) {
document.getElementById(dname).style.display = "none";
}
function changeUserRight (id1) {
var x = confirm ( 'Das Recht dieses Users wirklich aendern?' );
if (x) {
var newr = document.getElementById('recht'+id1).value;
var Fenster = window.open ('admin.php?user-changeRecht-' + id1 + '=0&newr='+ newr, 'changeRecht', 'status=no,scrollbars=no,height=10,width=10');
Fenster.focus();
}
}
function changeGruppen (id1) {
var Fenster = window.open ('admin.php?user-gruppen-' + id1, 'changeGruppen', 'status=yes,scrollbars=yes,height=500,width=250,left=300,top=50');
Fenster.focus();
}
function changeModulrecht (id1) {
var Fenster = window.open ('admin.php?user-modulrecht-' + id1, 'changeModulrecht', 'status=yes,scrollbars=yes,height=500,width=250,left=300,top=50');
Fenster.focus();
}
function deleteUser (id1) {
var x = confirm ( 'Diesen User wirklich komplett entfernen?' );
if (x) {
var Fenster = window.open ('admin.php?user-deleteUser-' + id1, 'deleteUser', 'status=no,scrollbars=no,height=10,width=10');
Fenster.focus();
}
}
function changeModulRecht ( modul, uid ) {
var aktion = 'loeschen';
if ( document.getElementById("MN" + modul + "-" + uid).checked == true ) {
aktion = 'eintragen';
}
var Fenster = window.open ('admin.php?user-modulrecht-' +uid+ '=0&modul=' + modul + '&aktion=' + aktion, 'changeModulRecht', 'status=no,scrollbars=no,height=10,width=10');
}
//-->
</script>
<div style="float:right"><a href="admin.php?puser">Noch nicht bestätigte Registrierungen verwalten</a></div>
<body onload="setfocus()">
<form action="admin.php" name="f" method="GET" style="padding: 0px; margin:0px 0px 0px 0px;" >
<input type="hidden" name="user" value="" />
<table cellpadding="3" cellspacing="1" border="0" class="border" style="float:left">
<tr>
<td class="Cmite"><input name="q" value="" /></td>
<td class="Cdark"><input type="submit" value="Suchen" /></td>
</tr>
</table>
</form>
<br />
<br />
<br />
<table cellpadding="3" cellspacing="1" border="0" class="border">
<tr>
<td colspan="6"></td>
<td class="Cmite" colspan="12"><b>Modulrechte:</b></td>
</tr>
<tr class="Chead">
<th>Name</th>
<th>Recht</th>
<th>Gruppe</th>
<th></th>
<th></th>
<th class="border"> </th>
<th style="font-size: 9px; font-weight: normal;" title="Awards" valign="bottom">Awards</th><th style="font-size: 9px; font-weight: normal;" title="Awaycal" valign="bottom">Awaycal</th><th style="font-size: 9px; font-weight: normal;" title="Downloads" valign="bottom">Downloads</th><th style="font-size: 9px; font-weight: normal;" title="Forum" valign="bottom">Forum</th><th style="font-size: 9px; font-weight: normal;" title="Gallery" valign="bottom">Gallery</th><th style="font-size: 9px; font-weight: normal;" title="Gbook" valign="bottom">Gbook</th><th style="font-size: 9px; font-weight: normal;" title="Gruppen" valign="bottom">Gruppen</th><th style="font-size: 9px; font-weight: normal;" title="Kalender" valign="bottom">Kalender</th><th style="font-size: 9px; font-weight: normal;" title="Kasse" valign="bottom">Kasse</th><th style="font-size: 9px; font-weight: normal;" title="News" valign="bottom">News</th><th style="font-size: 9px; font-weight: normal;" title="Regeln" valign="bottom">Regeln</th><th style="font-size: 9px; font-weight: normal;" title="Wars" valign="bottom">Wars</th>
</tr>
Das ist der Abschnitt der Modulrechte, hoff ich mal.