Tring to fix the folders reporting the total number of messages for the inbox only

This commit is contained in:
jengo 2000-11-16 09:09:19 +00:00
parent 0f2c63381f
commit 300dca37f7

View File

@ -115,7 +115,7 @@
<?php echo ($newinstall?'<input type="hidden" name="newinstall" value="True">':""); ?>
<select name="lang_selected[]" multiple size="10">
<?php
$db->query("select lang_id,lang_name from languages where available='Yes' and lang_id != 'en'");
$db->query("select lang_id,lang_name from languages where available='Yes'");
while ($db->next_record()) {
echo '<option value="' . $db->f("lang_id") . '">' . $db->f("lang_name") . '</option>';
}