Index: lams_gradebook/conf/language/lams/ApplicationResources.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_gradebook/conf/language/lams/ApplicationResources.properties,v
diff -u -r1.1.2.5 -r1.1.2.6
--- lams_gradebook/conf/language/lams/ApplicationResources.properties 21 Apr 2009 06:48:25 -0000 1.1.2.5
+++ lams_gradebook/conf/language/lams/ApplicationResources.properties 21 Apr 2009 06:52:24 -0000 1.1.2.6
@@ -47,9 +47,9 @@
gradebook.monitor.releasemarks.1 =Release
gradebook.monitor.releasemarks.2 =Hide
gradebook.monitor.releasemarks.3 =marks for this lesson.
-gradebook.monitoy.releasemarks.check =Are you sure you want to release marks for this lesson to learners?
-gradebook.monitoy.releasemarks.check2 =Are you sure you want to hide marks for this lesson?
-error.releasemarks.fail =Mark release failed, please contact your system adminstrator.
+gradebook.monitor.releasemarks.check =Are you sure you want to release marks for this lesson to learners?
+gradebook.monitor.releasemarks.check2 =Are you sure you want to hide marks for this lesson?
+error.releasemarks.fail =Mark release failed, please contact your system administrator.
error.markhigher =Mark must be lower than maximum mark.
error.cellsave =Problem saving cell content, please contact your system administrator.
label.error =Error
Index: lams_gradebook/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_gradebook/conf/language/lams/ApplicationResources_en_AU.properties,v
diff -u -r1.1.2.5 -r1.1.2.6
--- lams_gradebook/conf/language/lams/ApplicationResources_en_AU.properties 21 Apr 2009 06:48:25 -0000 1.1.2.5
+++ lams_gradebook/conf/language/lams/ApplicationResources_en_AU.properties 21 Apr 2009 06:52:24 -0000 1.1.2.6
@@ -47,9 +47,9 @@
gradebook.monitor.releasemarks.1 =Release
gradebook.monitor.releasemarks.2 =Hide
gradebook.monitor.releasemarks.3 =marks for this lesson.
-gradebook.monitoy.releasemarks.check =Are you sure you want to release marks for this lesson to learners?
-gradebook.monitoy.releasemarks.check2 =Are you sure you want to hide marks for this lesson?
-error.releasemarks.fail =Mark release failed, please contact your system adminstrator.
+gradebook.monitor.releasemarks.check =Are you sure you want to release marks for this lesson to learners?
+gradebook.monitor.releasemarks.check2 =Are you sure you want to hide marks for this lesson?
+error.releasemarks.fail =Mark release failed, please contact your system administrator.
error.markhigher =Mark must be lower than maximum mark.
error.cellsave =Problem saving cell content, please contact your system administrator.
label.error =Error
Index: lams_gradebook/web/gradebookMonitor.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_gradebook/web/gradebookMonitor.jsp,v
diff -u -r1.1.2.5 -r1.1.2.6
--- lams_gradebook/web/gradebookMonitor.jsp 21 Apr 2009 06:39:49 -0000 1.1.2.5
+++ lams_gradebook/web/gradebookMonitor.jsp 21 Apr 2009 07:00:28 -0000 1.1.2.6
@@ -24,9 +24,9 @@
var conf;
if (marksReleased) {
- conf = confirm('');
+ conf = confirm('');
} else {
- conf = confirm('');
+ conf = confirm('');
}
if (conf) {
@@ -176,7 +176,7 @@
var currRowData = jQuery("#"+subgrid_table_id).getRowData(rowid);
if (currRowData['marksAvailable'] != null && currRowData['marksAvailable'] != "") {
- if (parseInt(value) > parseInt(currRowData['marksAvailable'])){
+ if (parseFloat(value) > parseFloat(currRowData['marksAvailable'])){
info_dialog('', '', '');
jQuery("#"+subgrid_table_id).restoreCell( iRow, iCol);
throw("Mark must be lower than maximum mark");
@@ -372,7 +372,7 @@
var currRowData = jQuery("#"+subgrid_table_id).getRowData(rowid);
if (currRowData['marksAvailable'] != null && currRowData['marksAvailable'] != "") {
- if (parseInt(value) > parseInt(currRowData['marksAvailable'])){
+ if (parseFloat(value) > parseFloat(currRowData['marksAvailable'])){
info_dialog('', '', '');
jQuery("#"+subgrid_table_id).restoreCell( iRow, iCol);
throw("Mark must be lower than maximum mark");