Update the enhanced and nature themes so that the 'Message' looks better for the IVR Menu and other features in the future.

This commit is contained in:
Mark Crane 2013-12-19 09:26:22 +00:00
parent 1b28bac9f7
commit 606c78bdeb
2 changed files with 22 additions and 6 deletions

View File

@ -760,9 +760,17 @@ table tr:nth-last-child(-5) td:first-of-type {
</script>
<?php
if (strlen($_SESSION['message']) > 0) {
echo "<div id='message' style='position:absolute; left:50%;'>";
echo " <table><tr><td class='vncellreq'>".$_SESSION['message']."</td></tr></table>";
echo "</div>";
echo "<div id='message' align='center'>\n";
echo " <table width='40%' border='0'>\n";
echo " <tr>\n";
echo " <th align='left'>".$text['message-message']."</th>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class='row_style1'><strong>".$_SESSION['message']."</strong></td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "<br />\n";
echo "</div>\n";
unset($_SESSION['message']);
}
?>

View File

@ -804,9 +804,17 @@ table tr:nth-last-child(-5) td:first-of-type {
</script>
<?php
if (strlen($_SESSION['message']) > 0) {
echo "<div id='message' style='position:absolute; left:50%;'>";
echo " <table><tr><td class='vncellreq'>".$_SESSION['message']."</td></tr></table>";
echo "</div>";
echo "<div id='message' align='center'>\n";
echo " <table width='40%' border='0'>\n";
echo " <tr>\n";
echo " <th align='left'>".$text['message-message']."</th>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class='row_style1'><strong>".$_SESSION['message']."</strong></td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "<br />\n";
echo "</div>\n";
unset($_SESSION['message']);
}
?>