*** empty log message ***

pull/1/head
root 16 years ago
parent 3756cd5236
commit 74749c2c49

@ -22,10 +22,10 @@
</tr>
<tr>
<td class="DataTD" valign="top"><b><?=_("Alert me if")?></b>: </td>
<td class="DataTD" align="left"><input type="checkbox" name="general" value="1"<? if($_REQUEST['general']) echo " checked='checked'"; ?>><?=_("General Announcements")?><br>
<input type="checkbox" name="country" value="1"<? if($_REQUEST['country']) echo " checked='checked'"; ?>><?=_("Country Announcements")?><br>
<input type="checkbox" name="regional" value="1"<? if($_REQUEST['regional']) echo " checked='checked'"; ?>><?=_("Regional Announcements")?><br>
<input type="checkbox" name="radius" value="1"<? if($_REQUEST['radius']) echo " checked='checked'"; ?>><?=_("Within 200km Announcements")?></td>
<td class="DataTD" align="left"><input type="checkbox" name="general" value="1"<? if(array_key_exists('general',$_REQUEST) && $_REQUEST['general']) echo " checked='checked'"; ?>><?=_("General Announcements")?><br>
<input type="checkbox" name="country" value="1"<? if(array_key_exists('country',$_REQUEST) && $_REQUEST['country']) echo " checked='checked'"; ?>><?=_("Country Announcements")?><br>
<input type="checkbox" name="regional" value="1"<? if(array_key_exists('regional',$_REQUEST) && $_REQUEST['regional']) echo " checked='checked'"; ?>><?=_("Regional Announcements")?><br>
<input type="checkbox" name="radius" value="1"<? if(array_key_exists('radius',$_REQUEST) && $_REQUEST['radius']) echo " checked='checked'"; ?>><?=_("Within 200km Announcements")?></td>
</tr>
<tr>
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update My Settings")?>"></td>

@ -59,7 +59,7 @@ echo $_SESSION['_config']['language'];
<tr>
<td class="DataTD"><?=_("Additional Language")?>:</td>
<td class="DataTD" align="left"><? echo "${lang['lang']} - ${lang['country']}"; ?>
<a href="account.php?oldid=41&amp;action=dellang&amp;remove=<?=$row['lang']?>"><?=_("Delete")?></a></td>
<a href="account.php?oldid=41&amp;action=dellang&amp;remove=<?=$row['lang']?>&amp;csrf=<?=make_csrf('seclang')?>"><?=_("Delete")?></a></td>
</tr>
<? } ?>
<tr>

Loading…
Cancel
Save