You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2015/02/13 22:27:07 UTC

svn commit: r1659692 - /vcl/trunk/web/.ht-inc/blockallocations.php

Author: jfthomps
Date: Fri Feb 13 21:27:07 2015
New Revision: 1659692

URL: http://svn.apache.org/r1659692
Log:
blockallocations.php: modified getPendingBlockHTML: wrapping of explination text for accept and reject dialogs was too short; changed from 50 to 100

Modified:
    vcl/trunk/web/.ht-inc/blockallocations.php

Modified: vcl/trunk/web/.ht-inc/blockallocations.php
URL: http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/blockallocations.php?rev=1659692&r1=1659691&r2=1659692&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/blockallocations.php (original)
+++ vcl/trunk/web/.ht-inc/blockallocations.php Fri Feb 13 21:27:07 2015
@@ -1963,7 +1963,7 @@ function getPendingBlockHTML($listonly=0
 	$rt .= "title=\"" . _("Accept Block Allocation") . "\">\n";
 	$rt .= "<h2>" . _("Accept Block Allocation") . "</h2>\n";
 	$h = _("Please review the following information, fill in the additional fields, and click <strong>Accept Block Allocation</strong>.");
-	$rt .= preg_replace("/(.{1,50}([ \n]|$))/", '\1<br>', $h) . "<br>";
+	$rt .= preg_replace("/(.{1,100}([ \n]|$))/", '\1<br>', $h) . "<br>";
 	$rt .= "<table summary=\"\">\n";
 	$rt .= "  <tr>\n";
 	$rt .= "    <th align=\"right\">" . _("Environment:") . "</th>\n";
@@ -2067,7 +2067,7 @@ function getPendingBlockHTML($listonly=0
 	$rt .= "title=\"" . _("Reject Block Allocation") . "\">\n";
 	$rt .= "<h2>" . _("Reject Block Allocation") . "</h2>\n";
 	$h = _("Please review the following information, add a reason for rejecting the block allocation, and click <strong>Reject Block Allocation</strong>.");
-	$rt .= preg_replace("/(.{1,50}([ \n]|$))/", '\1<br>', $h) . "<br>\n";
+	$rt .= preg_replace("/(.{1,100}([ \n]|$))/", '\1<br>', $h) . "<br>\n";
 	$rt .= "<table summary=\"\">\n";
 	$rt .= "  <tr>\n";
 	$rt .= "    <th align=\"right\">" . _("Environment:") . "</th>\n";