Commit 13480b18 authored by José Luis  Gutiérrez's avatar José Luis Gutiérrez Committed by Alessandro Rubini

www: description/help message for table elements in forms

If any data structure includes also a "help" column, this is displayed
as a "title" message when the cursor is over the form cell.
parent eb27aa6e
......@@ -3,7 +3,7 @@
//Global Variables
$etcdir="/usr/wr/etc/"; //configuration file folder for WRS
$snmpconf="snmpd.conf";
$ppsiconf="ppsi.conf";
$ppsiconf="ppsi-pre.conf";
$wrswhalconf="wrsw_hal.conf";
$sfpdatabaseconf="sfp_database.conf";
$wrdateconf="wr_date.conf";
......@@ -220,7 +220,7 @@ function print_form($section, $subsection, $formatID, $class, $infoname, $format
foreach ($_SESSION[$section][$subsection] as $row) {
echo "<tr>";
echo "<td>".$row["name"]."</td>";
echo '<td align="center"><INPUT type="text" value="'.$row["value"].'" name="'.$row["vname"].'" ></td>';
echo '<td align="center"><INPUT type="text" value="'.$row["value"].'" name="'.$row["vname"].'" title="'.$row["help"].'"></td>';
echo "</tr>";
}
echo '</table>';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment