Unterschied in der class_wiw.php

Didito
Wo ist der Unterschied ?

case "linkus.php":
$location = $lang->get("LANG_WIW_FILE_YW_LINKUS", array('$SID_ARG_1ST' => $SID_ARG_1ST));
break;

case "kt_main.php":
$location = $lang->get("LANG_WIW_FILE_KICKTIPP");
break;



was passiert wenn ich bei jedem das so mache:

case "kt_main.php":
$location = $lang->get("LANG_WIW_FILE_KICKTIPP");
break;

also das


array('$SID_ARG_1ST' => $SID_ARG_1ST));

weglasse ?
MrMind
Diese Code hier:

code:
1:
array('$SID_ARG_1ST' => $SID_ARG_1ST));


hängt einfach nur die Session an die URL an, welche dann im WIW verlinkt ist. Ist diese ohne dies verlinkt und der User verwendet keine Cookies, muss er sich jedesmal dazu einloggen.

Mfg
MrMind