fixed adblock filter issue

This commit is contained in:
Serghey Rodin 2012-12-19 15:36:28 +02:00
commit f3d61444a4
30 changed files with 541 additions and 541 deletions

View file

@ -13,10 +13,10 @@
<td style="padding: 10px 2px 10px 0;" ><a class="name"><b>Adding Mail Domain</b></a>
<?php
if (!empty($_SESSION['error_msg'])) {
echo "<span class=\"add-error\"> → ".$_SESSION['error_msg']."</span>";
echo "<span class=\"vst-error\"> → ".$_SESSION['error_msg']."</span>";
} else {
if (!empty($_SESSION['ok_msg'])) {
echo "<span class=\"add-ok\"> → ".$_SESSION['ok_msg']."</span>";
echo "<span class=\"vst-ok\"> → ".$_SESSION['ok_msg']."</span>";
}
}
?>
@ -43,43 +43,43 @@
</table>
<table class="data-col2" width="600px">
<tr>
<td class="add-text" style="padding: 10 0 0 2px;">
<td class="vst-text" style="padding: 10 0 0 2px;">
Domain
</td>
</tr>
<tr>
<td>
<input type="text" size="20" class="add-input" name="v_domain" <?php if (!empty($v_domain)) echo "value=".$v_domain; ?> >
<input type="text" size="20" class="vst-input" name="v_domain" <?php if (!empty($v_domain)) echo "value=".$v_domain; ?> >
</td>
</tr>
<tr>
<td class="add-text" style="padding: 10px 0 0 2px;">
<td class="vst-text" style="padding: 10px 0 0 2px;">
AntiSpam Support
</td>
</tr>
<tr>
<td>
<input type="checkbox" size="20" class="add-checkbox" name="v_antispam" <?php if ((empty($v_antispam)) || ($v_antispam == 'yes')) echo "checked=yes"; ?>>
<input type="checkbox" size="20" class="vst-checkbox" name="v_antispam" <?php if ((empty($v_antispam)) || ($v_antispam == 'yes')) echo "checked=yes"; ?>>
</td>
</tr>
<tr>
<td class="add-text" style="padding: 10px 0 0 2px;">
<td class="vst-text" style="padding: 10px 0 0 2px;">
AntiVirus Support
</td>
</tr>
<tr>
<td>
<input type="checkbox" size="20" class="add-checkbox" name="v_antivirus" <?php if ((empty($v_antivirus)) || ($v_antivirus == 'yes')) echo "checked=yes"; ?>>
<input type="checkbox" size="20" class="vst-checkbox" name="v_antivirus" <?php if ((empty($v_antivirus)) || ($v_antivirus == 'yes')) echo "checked=yes"; ?>>
</td>
</tr>
<tr>
<td class="add-text" style="padding: 10px 0 0 2px;">
<td class="vst-text" style="padding: 10px 0 0 2px;">
DKIM Support
</td>
</tr>
<tr>
<td>
<input type="checkbox" size="20" class="add-checkbox" name="v_dkim" <?php if ($v_dkim == 'yes') echo "checked=yes"; ?>>
<input type="checkbox" size="20" class="vst-checkbox" name="v_dkim" <?php if ($v_dkim == 'yes') echo "checked=yes"; ?>>
</td>
</tr>
<tr>