diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 19:50:36 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 19:50:42 +0200 |
commit | ded97de8915975d169025fd8d3a8ebab8cbfa513 (patch) | |
tree | 091e2cf852e656ac57f39f253f4036594d7bb696 /core/templates/error.php | |
parent | c3503013427b587ecbd645362dd4d460db860f8f (diff) | |
download | nextcloud-server-ded97de8915975d169025fd8d3a8ebab8cbfa513.tar.gz nextcloud-server-ded97de8915975d169025fd8d3a8ebab8cbfa513.zip |
removed excess code
Diffstat (limited to 'core/templates/error.php')
-rw-r--r-- | core/templates/error.php | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/core/templates/error.php b/core/templates/error.php index aa8a8d473b4..4f05e008f99 100644 --- a/core/templates/error.php +++ b/core/templates/error.php @@ -1,12 +1,8 @@ -<div id="login"> - <header><img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" /></header> - <ul> - <?php foreach($_["errors"] as $error):?> - <li class='error'> - <?php echo $error['error'] ?><br/> - <p class='hint'><?php if(isset($error['hint']))echo $error['hint'] ?></p> - </li> - <?php endforeach ?> - </ul> -</div> - +<ul> + <?php foreach($_["errors"] as $error):?> + <li class='error'> + <?php echo $error['error'] ?><br/> + <p class='hint'><?php if(isset($error['hint']))echo $error['hint'] ?></p> + </li> + <?php endforeach ?> +</ul> |