Stop unnecessary warnings in get_language
[koha.git] / cataloguing / value_builder / marc21_field_245h.pl
index 6198456..9ab2ca1 100755 (executable)
@@ -22,9 +22,11 @@ use strict;
 #use warnings; FIXME - Bug 2505
 use C4::Context;
 
-=head1
+=head1 FUNCTIONS
 
-plugin_parameters : other parameters added when the plugin is called by the dopop function
+=head2 plugin_parameters
+
+other parameters added when the plugin is called by the dopop function
 
 =cut
 
@@ -32,17 +34,17 @@ sub plugin_parameters {
     return "";
 }
 
-=head1
+=head2 plugin_javascript
 
-plugin_javascript : the javascript function called when the user enters the subfield.
+Thee javascript function called when the user enters the subfield.
 contain 3 javascript functions :
-* one called when the field is entered (OnFocus). Named FocusXXX
-* one called when the field is leaved (onBlur). Named BlurXXX
-* one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
+ * one called when the field is entered (OnFocus). Named FocusXXX
+ * one called when the field is leaved (onBlur). Named BlurXXX
+ * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
 
 returns :
-* XXX
-* a variable containing the 3 scripts.
+ * XXX
+ * a variable containing the 3 scripts.
 the 3 scripts are inserted after the <input> in the html code
 
 =cut
@@ -79,9 +81,9 @@ function Clic$function_name(subfield_managed) {
 return ($function_name,$res);
 }
 
-=head1
+=head2 plugin
 
-plugin : the true value_builded. The screen that is open in the popup window.
+The true value_builded. The screen that is open in the popup window.
 
 =cut