Fix some layout issues

This commit is contained in:
Mike Koch 2015-01-14 17:03:05 -05:00
parent dd958b6946
commit b658af1098
2 changed files with 5 additions and 3 deletions

View File

@ -102,18 +102,20 @@ $num_mail = hesk_checkNewMail();
</div><!-- /.navbar-collapse --> </div><!-- /.navbar-collapse -->
</nav> </nav>
<div style="padding: 20px 20px 0 20px; margin-bottom: -10px">
<?php <?php
// Show a notice if we are in maintenance mode // Show a notice if we are in maintenance mode
if ( hesk_check_maintenance(false) ) if ( hesk_check_maintenance(false) )
{ {
echo '<div style="padding: 20px 20px 0 20px; margin-bottom: -10px">';
hesk_show_notice($hesklang['mma2'], $hesklang['mma1'], false); hesk_show_notice($hesklang['mma2'], $hesklang['mma1'], false);
echo '</div>';
} }
// Show a notice if we are in "Knowledgebase only" mode // Show a notice if we are in "Knowledgebase only" mode
if ( hesk_check_kb_only(false) ) if ( hesk_check_kb_only(false) )
{ {
echo '<div style="padding: 20px 20px 0 20px; margin-bottom: -10px">';
hesk_show_notice($hesklang['kbo2'], $hesklang['kbo1'], false); hesk_show_notice($hesklang['kbo2'], $hesklang['kbo1'], false);
echo '</div>';
} }
?> ?>
</div>

View File

@ -23,4 +23,4 @@ $modsForHesk_settings['show_icons'] = 0;
$modsForHesk_settings['custom_field_setting'] = 0; $modsForHesk_settings['custom_field_setting'] = 0;
//-- Set this to 1 to enable email verification for new customers //-- Set this to 1 to enable email verification for new customers
$modsForHesk_settings['customer_email_verification_required'] = 0;$modsForHesk_settings['show_icons'] = 0; $modsForHesk_settings['customer_email_verification_required'] = 0;