added links in status string

This commit is contained in:
Serghey Rodin 2012-12-18 18:29:13 +02:00
commit 949763b7dc
30 changed files with 64 additions and 55 deletions

View file

@ -13,10 +13,10 @@
<td style="padding: 10x 2px 0 0;" ><a class="name"><b>Adding Package</b></a>
<?php
if (!empty($_SESSION['error_msg'])) {
echo "<a class=\"add-error\"> → ".$_SESSION['error_msg']."</a>";
echo "<span class=\"add-error\"> → ".$_SESSION['error_msg']."</span>";
} else {
if (!empty($_SESSION['ok_msg'])) {
echo "<a class=\"add-ok\"> → ".$_SESSION['ok_msg']."</a>";
echo "<span class=\"add-ok\"> → ".$_SESSION['ok_msg']."</span>";
}
}
?>