diff options
Diffstat (limited to 'views/default/messages/errors/list.php')
| -rw-r--r-- | views/default/messages/errors/list.php | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/views/default/messages/errors/list.php b/views/default/messages/errors/list.php deleted file mode 100644 index 6af962d73..000000000 --- a/views/default/messages/errors/list.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php
-
- /**
- * Elgg list errors
- * Lists error messages
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- *
- * @uses $vars['object'] An array of error messages
- */
-
- if (!empty($vars['object']) && is_array($vars['object'])) {
-
-?>
-<!-- used to fade out the system messages after 3 seconds -->
-<script>
- $(document).ready(function () {
- $('.messages_error').animate({opacity: 1.0}, 3000) //this holds the div without change for 3 seconds
- $('.messages_error').fadeOut('slow'); //fade it out
- });
-</script>
-
- <div class="messages_error">
-
-<?php
- foreach($vars['object'] as $error) {
- echo elgg_view('messages/errors/error',array('object' => $error));
- }
-?>
-
- </div>
-<?php
- }
-
-
-
-?>
\ No newline at end of file |
