[freeside-commits] freeside/FS/FS Conf.pm,1.324.2.1,1.324.2.2

Ivan,,, ivan at wavetail.420.am
Fri Oct 23 17:34:42 PDT 2009


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv26551/FS/FS

Modified Files:
      Tag: FREESIDE_1_9_BRANCH
	Conf.pm 
Log Message:
selfservice per-agent skinning

Index: Conf.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Conf.pm,v
retrieving revision 1.324.2.1
retrieving revision 1.324.2.2
diff -u -d -r1.324.2.1 -r1.324.2.2
--- Conf.pm	23 Oct 2009 01:41:31 -0000	1.324.2.1
+++ Conf.pm	24 Oct 2009 00:34:39 -0000	1.324.2.2
@@ -146,7 +146,7 @@
   return $self->_usecompat('config_binary', @_) if use_confcompat;
 
   my $cv = $self->_config(@_) or return;
-  decode_base64($cv->value);
+  length($cv->value) ? decode_base64($cv->value) : '';
 }
 
 =item exists KEY [ AGENTNUM [ NODEFAULT ] ]
@@ -2926,6 +2926,7 @@
     'section'     => '',
     'description' => 'HTML for the HEAD section of the self-service interface, typically used for LINK stylesheet tags',
     'type'        => 'textarea', #htmlarea?
+    'per_agent'   => 1,
   },
 
 
@@ -2934,6 +2935,7 @@
     'section'     => '',
     'description' => 'HTML header for the self-service interface',
     'type'        => 'textarea', #htmlarea?
+    'per_agent'   => 1,
   },
 
   {
@@ -2941,6 +2943,7 @@
     'section'     => '',
     'description' => 'HTML header for the self-service interface',
     'type'        => 'textarea', #htmlarea?
+    'per_agent'   => 1,
   },
 
 
@@ -2949,6 +2952,7 @@
     'section'     => '',
     'description' => 'HTML background color for the self-service interface, for example, #FFFFFF',
     'type'        => 'text',
+    'per_agent'   => 1,
   },
 
   {
@@ -2956,6 +2960,7 @@
     'section'     => '',
     'description' => 'HTML color for self-service interface input boxes, for example, #C0C0C0"',
     'type'        => 'text',
+    'per_agent'   => 1,
   },
 
   {



More information about the freeside-commits mailing list