mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
23 lines
686 B
PHP
23 lines
686 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Settings page not found
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
if(!isset($_SESSION))
|
||
|
exit("Invalid call !");
|
||
|
|
||
|
//This message should appear only when an error occur.
|
||
|
?><table align='center'>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<?php echo code_inc_img(path_img_asset('erreur.png')); ?>
|
||
|
</td>
|
||
|
<td>
|
||
|
<p><b>Erreur :</b> La rubrique demandée n'a pas été trouvée ou n'existe pas</p>
|
||
|
<p>Pour résoudre le problème, retournez à la page précédente et actualisez-la.</p>
|
||
|
<p>N'hésitez pas à nous <a href='<?php echo siteURL(); ?>contact.php'>contacter</a> pour de plus amples informations.</p>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table><?php
|