← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 1573: Fixed bug #512191

 

------------------------------------------------------------
revno: 1573
committer: Lars Helge Oeverland <larshelge@xxxxxxxxx>
branch nick: trunk
timestamp: Mon 2010-03-08 09:34:02 +0100
message:
  Fixed bug #512191
modified:
  dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/denum.js


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription.
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/denum.js'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/denum.js	2010-01-25 14:14:57 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/denum.js	2010-03-08 08:34:02 +0000
@@ -129,10 +129,10 @@
 	enableRadioGroup( "aggregationOperator" );
 	
 	var formula = document.getElementById( "formula" ).value;
-    var description = htmlEncode( document.getElementById( "description" ).value );
+    var description = document.getElementById( "description" ).value;
     var aggregationOperator = getSelectedRadioValue( "aggregationOperator" );
     
-	var type = htmlEncode( document.getElementById( "type" ).value );
+	var type = document.getElementById( "type" ).value;
     
     if ( window.opener && !window.opener.closed )
 	{