mirror of
https://github.com/Mibew/mibew.git
synced 2025-03-13 14:44:08 +03:00
32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2005-2013 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
if( isset($errors) && count($errors) > 0 ) { ?>
|
|
<div class="errinfo">
|
|
<img src='<?php echo $webimroot ?>/images/icon_err.gif' width="40" height="40" border="0" alt="" class="left"/>
|
|
<?php
|
|
print getlocal("errors.header");
|
|
foreach( $errors as $e ) {
|
|
print getlocal("errors.prefix");
|
|
print $e;
|
|
print getlocal("errors.suffix");
|
|
}
|
|
print getlocal("errors.footer");
|
|
?>
|
|
</div>
|
|
<br clear="all"/>
|
|
<?php } ?>
|