2010-05-05 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/map_builder.php: added the height and width to save in
	the copy.
	Fixes: #2989340



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2671 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-05-05 17:30:29 +00:00
parent b9035ac627
commit 55695ac6b7
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2010-05-05 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/map_builder.php: added the height and width to save in
the copy.
Fixes: #2989340
2010-05-05 Miguel de Dios <miguel.dedios@artica.es> 2010-05-05 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/visual_console_builder.php: added the extract size of * godmode/reporting/visual_console_builder.php: added the extract size of

View File

@ -46,9 +46,11 @@ if ($copy_layout) {
// Create the new Console // Create the new Console
$idGroup = $layout_src[0]['id_group']; $idGroup = $layout_src[0]['id_group'];
$background = $layout_src[0]['background']; $background = $layout_src[0]['background'];
$height = $layout_src[0]['height'];
$width = $layout_src[0]['width'];
$visualConsoleName = $name_dst; $visualConsoleName = $name_dst;
$values = array('name' => $visualConsoleName, 'id_group' => $idGroup, 'background' => $background); $values = array('name' => $visualConsoleName, 'id_group' => $idGroup, 'background' => $background, 'height' => $height, 'width' => $width);
$result = process_sql_insert('tlayout', $values); $result = process_sql_insert('tlayout', $values);
$idNewVisualConsole = $result; $idNewVisualConsole = $result;