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/404.php | |
parent | c3503013427b587ecbd645362dd4d460db860f8f (diff) | |
download | nextcloud-server-ded97de8915975d169025fd8d3a8ebab8cbfa513.tar.gz nextcloud-server-ded97de8915975d169025fd8d3a8ebab8cbfa513.zip |
removed excess code
Diffstat (limited to 'core/templates/404.php')
-rw-r--r-- | core/templates/404.php | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/core/templates/404.php b/core/templates/404.php index 67ce8c8026c..13a81010343 100644 --- a/core/templates/404.php +++ b/core/templates/404.php @@ -7,12 +7,9 @@ if(!isset($_)){//also provide standalone error page exit; } ?> -<div id="login"> - <header><img src="<?php echo image_path('', 'weather-clear.png'); ?>" alt="ownCloud" /></header> - <ul> - <li class='error'> - <?php echo $l->t( 'Error 404, Cloud not found' ); ?><br/> - <p class='hint'><?php if(isset($_['file'])) echo $_['file']?></p> - </li> - </ul> -</div> +<ul> + <li class='error'> + <?php echo $l->t( 'Cloud not found' ); ?><br/> + <p class='hint'><?php if(isset($_['file'])) echo $_['file']?></p> + </li> +</ul> |