2013-04-24 Miguel de Dios <miguel.dedios@artica.es>

* godmode/tag/edit_tag.php: change the input text for textarea for
	large list of emails.
	
	Fixes: #3611473
	
	* pandoradb.sql: cleaned source code style.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8047 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-04-24 13:51:57 +00:00
parent 95eb5e2aa6
commit dff1dd0cb5
3 changed files with 21 additions and 11 deletions

View File

@ -1,3 +1,12 @@
2013-04-24 Miguel de Dios <miguel.dedios@artica.es>
* godmode/tag/edit_tag.php: change the input text for textarea for
large list of emails.
Fixes: #3611473
* pandoradb.sql: cleaned source code style.
2013-04-24 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/networkmap.topology.php: fixed the PHP

View File

@ -144,42 +144,43 @@ echo '<div align=left style="width: 98%" class="pandora_form">';
echo "<table border=0 cellpadding=4 cellspacing=4 class=databox width=98%>";
echo "<tr>";
echo "<td align=center>";
echo "<td align='left'>";
html_print_label (__("Name"),'name');
echo "</td>";
echo "<td align=center>";
echo "<td align='left'>";
html_print_input_text ('name_tag', $name_tag);
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align=left>";
echo "<td align='left'>";
html_print_label (__("Description"),'name');
echo "</td>";
echo "<td align=center>";
echo "<td align='left'>";
html_print_input_text ('description_tag', $description_tag);
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align=left>";
echo "<td align='left'>";
echo '<b>' . __("Url") . '</b>';
echo ui_print_help_tip (__("Hyperlink to help information that has to exist previously."), true);
echo "</td>";
echo "<td align=center>";
echo "<td align='left'>";
html_print_input_text ('url_tag', $url_tag);
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align=left>";
echo "<td align='left'>";
echo '<b>' . __("Email") . '</b>';
echo ui_print_help_tip (__("Associated Email direction to use later in alerts associated to Tags."), true);
echo "</td>";
echo "<td align=center>";
html_print_input_text ('email_tag', $email_tag);
echo "<td align='left'>";
html_print_textarea('email_tag', 5, 20, $email_tag);
//html_print_input_text ('email_tag', $email_tag);
echo "</td>";
echo "</tr>";
echo "<tr>";
if ($action == "update"){
echo "<td align=center>";
echo "<td align='center'>";
html_print_input_hidden ('update_tag', 1);
echo "</td>";
echo "<td align=right>";

View File

@ -1487,7 +1487,7 @@ CREATE TABLE IF NOT EXISTS `ttag` (
`name` varchar(100) NOT NULL default '',
`description` text NOT NULL,
`url` mediumtext NOT NULL,
`email` text NULL,
`email` text NULL,
PRIMARY KEY (`id_tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;