First beta, without arguments checking (install and web admin)

This commit is contained in:
Julien VAUBOURG
2014-11-09 22:49:07 +01:00
parent 2c44b2a7ec
commit 979a09ba8c
40 changed files with 13857 additions and 30 deletions

View File

@@ -0,0 +1,15 @@
<?php if(!empty($notices)): ?>
<div class="lim-debug lim-notices">
<h4> &#x2192; Notices and warnings</h4>
<dl>
<?php $cpt = 1; foreach($notices as $notice): ?>
<dt>[<?php echo $cpt.'. '.error_type($notice['errno'])?>]</dt>
<dd>
<?php echo $notice['errstr']?> in <strong><code><?php echo $notice['errfile']?></code></strong>
line <strong><code><?php echo $notice['errline']?></code></strong>
</dd>
<?php $cpt++; endforeach; ?>
</dl>
<hr>
</div>
<?php endif; ?>