<?php
/*
CREATIVE COMMONS - Attribution-No Derivative Works 3.0 Germany:
- You may not alter, transform, or build upon this work.
- Dieses Werk darf nicht bearbeitet oder in anderer Weise verändert werden.
*/
if ( $senden && $GigIsPrivate=="" )
{
echo '<tr><td></td><td class="ERROR">'.$L_181.'</td><td></td></tr>';
}
echo '<tr>
<td align="right" valign="top">'.$L_GigIsPrivate.':</td>
<td>
<select name="GigIsPrivate">';
if ( $GigIsPrivate=='' ) echo '<option></option>';
echo '<option value="1" '; if ($GigIsPrivate=="1") echo ' selected="selected"'; echo'>'.$L_091.'</option>
<option value="0" '; if ($GigIsPrivate=="0") echo ' selected="selected"'; echo'>'.$L_092.'</option>
</select>
</td>
<td valign="top"></td>
</tr>';
?>