From 34047b62e68d1e2e9d0ccfce085ccc8e041f40ff Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 24 Nov 2008 03:29:14 +0000 Subject: [PATCH] Split out long html lines into blocks --- usr/local/www/upload_progress.php | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/usr/local/www/upload_progress.php b/usr/local/www/upload_progress.php index 5d2ebf4d31..1e11e1ea52 100644 --- a/usr/local/www/upload_progress.php +++ b/usr/local/www/upload_progress.php @@ -50,13 +50,31 @@ $info = uploadprogress_get_info($id); // false is returned if the data isn't found if (!$info) { - echo "Could not locate progress {$id}. Trying again..."; - echo ""; + echo << + + + Could not locate progress {$id}. Trying again... + + +EOF; exit; } if (intval($info['percent']) > "99") { - echo ('< 

 

UPLOAD completed!
'); + echo << + +  

+  

+

+ + UPLOAD completed! + +
+ + +EOF1; exit; }