[Koha-patches] [PATCH] Bug 6184 : Plugin for 007 broken

Chris Cormack chrisc at catalyst.net.nz
Wed Apr 20 05:49:07 CEST 2011


---
 .../cataloguing/value_builder/marc21_field_007.tt  |   32 ++++++++++----------
 1 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_007.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_007.tt
index 14b466a..3c7d656 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_007.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_007.tt
@@ -122,7 +122,7 @@ function RedrawChoices(typ){
   var divOutput=document.getElementById("choices");
   switch(typ){
   case "a":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>a- Map</td> \
@@ -424,7 +424,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "c":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>c- Electronic Resource</td> \
@@ -860,7 +860,7 @@ function RedrawChoices(typ){
                           </table>';
     break;
   case "d":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>d- Globe</td> \
@@ -1038,7 +1038,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "f":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>f- Tactile Material</td> \
@@ -1576,7 +1576,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "g":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>g- Projected graphic</td> \
@@ -2016,7 +2016,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "h":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>h- Microform</td> \
@@ -2432,7 +2432,7 @@ function RedrawChoices(typ){
                           </table>';
     break;
   case "k":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>k- Nonprojected graphic</td> \
@@ -2775,7 +2775,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "m":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>m- Motion Picture</td> \
@@ -3613,7 +3613,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "o":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>o- Kit</td> \
@@ -3638,7 +3638,7 @@ function RedrawChoices(typ){
                          </table>';
     break;
   case "q":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>q- Notated music</td> \
@@ -3663,7 +3663,7 @@ function RedrawChoices(typ){
                          </table>';
     break;
   case "r":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>r- Remote-sensing image</td> \
@@ -4219,7 +4219,7 @@ function RedrawChoices(typ){
                        </table>';  
     break;
   case "s":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>s- Sound recording</td> \
@@ -4933,7 +4933,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "t":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>t- Text</td> \
@@ -4983,7 +4983,7 @@ function RedrawChoices(typ){
                          </table>';
     break;
   case "v":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>v- Videorecording</td> \
@@ -5402,7 +5402,7 @@ function RedrawChoices(typ){
                         </table>';  
     break;
   case "z":
-    divOutput.innerhtml='<table> \
+    divOutput.innerHTML='<table> \
                           <tr> \
                            <td>00 Category of material</td> \
                            <td>z- Unspecified</td> \
@@ -5437,7 +5437,7 @@ function RedrawChoices(typ){
                          </table>';
     break;
   default:
-    divOutput.innerhtml="baz";
+    divOutput.innerHTML="baz";
   }
 }
 //]]>
-- 
1.5.6.5



More information about the Koha-patches mailing list