2012-03-28 Sancho Lerena <slerena@artica.es>
* operation/agentes/estado_agente.php: Fixed several usability problems. Fixed search problem with html entities (blank spaces, etc). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5846 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
51907a0a9b
commit
10aba27d29
|
@ -1,3 +1,9 @@
|
|||
2012-03-28 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* operation/agentes/estado_agente.php: Fixed several usability problems.
|
||||
Fixed search problem with html entities (blank spaces, etc).
|
||||
|
||||
|
||||
2012-03-28 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* pandoradb.sql
|
||||
|
|
|
@ -116,7 +116,7 @@ while ($row = db_get_all_row_by_steps_sql($first, $result, "SELECT * FROM tgrupo
|
|||
|
||||
// Take some parameters (GET)
|
||||
$group_id = (int) get_parameter ("group_id", 0);
|
||||
$search = trim(io_safe_output_html(get_parameter ("search", "")));
|
||||
$search = trim(get_parameter ("search", ""));
|
||||
$offset = get_parameter('offset', 0);
|
||||
$refr = get_parameter('refr', 0);
|
||||
$recursion = get_parameter('recursion', 0);
|
||||
|
@ -149,16 +149,19 @@ echo '<table cellpadding="4" cellspacing="4" class="databox" width="98%">';
|
|||
echo '<tr><td style="white-space:nowrap;">'.__('Group').': ';
|
||||
|
||||
$groups = users_get_groups ();
|
||||
html_print_select_groups(false, "AR", true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false, 'width:180px');
|
||||
html_print_select_groups(false, "AR", true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false, 'width:150px');
|
||||
|
||||
echo '</td><td style="white-space:nowrap;">';
|
||||
|
||||
echo ui_print_help_tip (__("Group recursion"), true);
|
||||
|
||||
echo '</td><td style="white-space:nowrap;">'.__('Group recursion').': ';
|
||||
html_print_checkbox ("recursion", 1, $recursion, false, false, 'this.form.submit()');
|
||||
|
||||
echo '</td><td style="white-space:nowrap;">';
|
||||
|
||||
echo __('Free text for search').' (*): ';
|
||||
|
||||
html_print_input_text ("search", $search, '', 15);
|
||||
html_print_input_text ("search", $search, '', 8);
|
||||
|
||||
echo '</td><td style="white-space:nowrap;">';
|
||||
|
||||
|
@ -370,15 +373,7 @@ $table->align[7] = "center";
|
|||
$table->align[8] = "right";
|
||||
|
||||
$table->style = array();
|
||||
$table->style[0] = 'width: 9%';
|
||||
$table->style[1] = 'width: 11%';
|
||||
$table->style[2] = 'width: 7%';
|
||||
$table->style[3] = 'width: 10%';
|
||||
$table->style[4] = 'width: 9%';
|
||||
$table->style[5] = 'width: 10%';
|
||||
$table->style[6] = 'width: 6%';
|
||||
$table->style[7] = 'width: 6%';
|
||||
$table->style[8] = 'width: 15%';
|
||||
$table->style[0] = 'width: 15%';
|
||||
|
||||
$table->data = array ();
|
||||
|
||||
|
@ -416,7 +411,7 @@ foreach ($agents as $agent) {
|
|||
$data[0] .= '</a> ';
|
||||
}*/
|
||||
|
||||
$data[1] = ui_print_truncate_text($agent["description"], 30, false, true, true, '[…]', 'font-size: 6.5pt');
|
||||
$data[1] = ui_print_truncate_text($agent["description"], 50, false, true, true, '[…]', 'font-size: 6.5pt');
|
||||
|
||||
$data[2] = ui_print_os_icon ($agent["id_os"], false, true);
|
||||
|
||||
|
|
Loading…
Reference in New Issue