Bug 11431: (QA followup) Typo in help file / variable name
authorKatrin Fischer <Katrin.Fischer.83@web.de>
Sat, 24 Oct 2015 10:01:52 +0000 (12:01 +0200)
committerTomas Cohen Arazi <tomascohen@theke.io>
Wed, 4 Nov 2015 15:33:44 +0000 (12:33 -0300)
Fixes the variable name to avoid a double-up that made it
impossible to turn off the sounds in general. If AudioAlerts
are turned off, they will only work on the audio administration
page now so you can set up and test the different sounds there.

Also fixes a little typo in the help file.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
admin/audio_alerts.pl
koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc
koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/audio_alerts.tt

index 8470255..fa55b28 100755 (executable)
@@ -63,6 +63,6 @@ if (@delete) {
     Koha::AudioAlerts->fix_precedences();
 }
 
-$template->param( AudioAlerts => 1, audio_alerts => scalar Koha::AudioAlerts->search() );
+$template->param( AudioAlertsPage => 1, audio_alerts => scalar Koha::AudioAlerts->search() );
 
 output_html_with_http_headers $cgi, $cookie, $template->output;
index 3a54447..73514c2 100644 (file)
@@ -65,7 +65,7 @@
     </script>
 [% END %]
 
-[% IF Koha.Preference('AudioAlerts') || AudioAlerts %]
+[% IF Koha.Preference('AudioAlerts') || AudioAlertsPage %]
     <script type="text/javascript">
         //<![CDATA[
             var AUDIO_ALERT_PATH = '[% interface %]/[% theme %]/sound/';
index 7ab865a..01c07d7 100644 (file)
@@ -12,7 +12,7 @@
     <li>Locate the "Add new alert" form.</li>
     <li>
         Enter a selector in the "selector" input, you can see documentation on jQuery selectors <a href="http://api.jquery.com/category/selectors/">here</a>.
-        For example, if you use the selector "#circ_impossible" your selected sound will be trigger when a checkout for a patron is not possible ( such as the barcode not being found ).
+        For example, if you use the selector "#circ_impossible" your selected sound will be triggered when a checkout for a patron is not possible (such as the barcode not being found).
     <li>Enter a sound to be played, you can either select a built-in Koha sound using the pulldown selector, or you can enter a full URL to a sound file on another server.</li>
     <li>At this point, you can preview your sound by clicking the "Play sound" button</li>
     <li>Click "Save alert" and your done!</li>