[Mapbender-commits] r7851 - branches/2.7/resources/db/pgsql/UTF-8/update

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Fri Jun 10 04:53:01 EDT 2011


Author: verenadiewald
Date: 2011-06-10 01:53:01 -0700 (Fri, 10 Jun 2011)
New Revision: 7851

Modified:
   branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql
Log:
set width and height of body element to 0 for Gui admin2_de, otherwise this gui is not displayed correctly in IE8, see also http://trac.osgeo.org/mapbender/ticket/836

Modified: branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql
===================================================================
--- branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql	2011-06-10 08:50:22 UTC (rev 7850)
+++ branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql	2011-06-10 08:53:01 UTC (rev 7851)
@@ -22,3 +22,7 @@
 -- replace too many ' in definition
 UPDATE gui_element set e_attributes = replace(e_attributes,'''"','"') where e_id IN ('updateWMSs','owsproxy','editGUI_WMS');
 
+-- set width and height of body element to 0 for Gui admin2_de, otherwise this gui is not displayed correctly in IE8
+UPDATE gui_element set e_width = 0, e_height = 0
+where fkey_gui_id = 'admin2_de' and e_id ='body' ;
+



More information about the Mapbender_commits mailing list