|
From: <var...@us...> - 2021-07-29 10:26:23
|
Revision: 10389
http://sourceforge.net/p/phpwiki/code/10389
Author: vargenau
Date: 2021-07-29 10:26:22 +0000 (Thu, 29 Jul 2021)
Log Message:
-----------
configurator.php: fix size
Modified Paths:
--------------
trunk/configurator.php
Modified: trunk/configurator.php
===================================================================
--- trunk/configurator.php 2021-07-29 10:23:46 UTC (rev 10388)
+++ trunk/configurator.php 2021-07-29 10:26:22 UTC (rev 10389)
@@ -1753,7 +1753,7 @@
{
$size = strlen($this->default_value) > 45 ? 90 : 50;
return $this->get_config_item_header() .
- "<input type=\"text\" size=\"$50\" name=\"" . $this->get_config_item_name() . "\" value=\"" . htmlspecialchars($this->default_value) . "\" " .
+ "<input type=\"text\" size=\"50\" name=\"" . $this->get_config_item_name() . "\" value=\"" . htmlspecialchars($this->default_value) . "\" " .
$this->jscheck . " />" . "<p id=\"" . $this->get_config_item_id() . "\" style=\"color: green\">Input accepted.</p>";
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|