[Rt-commit] rt branch, master, updated. rt-4.2.12-336-gd6068db

Dustin Graves dustin at bestpractical.com
Mon Oct 26 17:40:58 EDT 2015


The branch, master has been updated
       via  d6068dbc42baac901aac96bcfce01f389b6b515f (commit)
      from  642a6d7ea1f3a455a842d92db5b4e674d92889c5 (commit)

Summary of changes:
 etc/RT_Config.pm.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

- Log -----------------------------------------------------------------
commit d6068dbc42baac901aac96bcfce01f389b6b515f
Author: Dustin Graves <dustin at bestpractical.com>
Date:   Mon Oct 26 21:40:49 2015 +0000

    fix missing parentheses in some sample code in RT_Config

diff --git a/etc/RT_Config.pm.in b/etc/RT_Config.pm.in
index 10d39f5..94b1f7c 100644
--- a/etc/RT_Config.pm.in
+++ b/etc/RT_Config.pm.in
@@ -3212,7 +3212,7 @@ Response SLA has only been met when the owner or AdminCc reply.
     Set ( %ServiceAgreements = (
         AssumeOutsideActor => 1,
         ...
-    );
+    ));
 
 =back
 
@@ -3234,7 +3234,7 @@ In the config you can set one or more work schedules, e.g.
         'Sales' => {
             ... description ...
         },
-    );
+    ));
 
 Read more about how to describe a schedule in L<Business::Hours>.
 
@@ -3256,7 +3256,7 @@ then L<%ServiceBusinessHours> should have the corresponding definition:
         'work just in Monday' => {
             1 => { Name => 'Monday', Start => '9:00', End => '18:00' },
         },
-    );
+    ));
 
 Default Business Hours setting is in $ServiceBusinessHours{'Default'}.
 

-----------------------------------------------------------------------


More information about the rt-commit mailing list