Test Failed
Push — CI ( 0f01dd...c95a04 )
by Adam
55:13
created
data/Relationships/One2OneBeanRelationship.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,9 +102,9 @@
 block discarded – undo
102 102
 
103 103
         //join the related module's table
104 104
         $join .= "$join_type $targetTableWithAlias ON $targetTable.$targetKey=$startingTable.$startingKey"
105
-               . " AND $targetTable.deleted=$deleted\n"
105
+                . " AND $targetTable.deleted=$deleted\n"
106 106
         //Next add any role filters
107
-               . $this->getRoleWhere();
107
+                . $this->getRoleWhere();
108 108
 
109 109
         if($return_array){
110 110
             return array(
Please login to merge, or discard this patch.
data/Relationships/One2MBeanRelationship.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
         //First join the relationship table
296 296
         $join .= "$join_type $targetTableWithAlias ON $startingTable.$startingKey=$targetTable.$targetKey AND $targetTable.deleted=0\n"
297 297
         //Next add any role filters
298
-               . $this->getRoleWhere(($linkIsLHS) ? $targetTable : $startingTable) . "\n";
298
+                . $this->getRoleWhere(($linkIsLHS) ? $targetTable : $startingTable) . "\n";
299 299
 
300 300
         if($return_array){
301 301
             return array(
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
 
355 355
         $query .= "$join_type $targetTableWithAlias ON $startingTable.$startingKey=$targetTable.$targetKey AND $targetTable.deleted=0\n"
356 356
         //Next add any role filters
357
-               . $this->getRoleWhere($tableInRoleFilter) . "\n";
357
+                . $this->getRoleWhere($tableInRoleFilter) . "\n";
358 358
 
359 359
         if (!empty($params['return_as_array'])) {
360 360
             $return_array = true;
Please login to merge, or discard this patch.
data/Relationships/M2MRelationship.php 1 patch
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -131,28 +131,28 @@  discard block
 block discarded – undo
131 131
         $lhsLinkName = $this->lhsLink;
132 132
         $rhsLinkName = $this->rhsLink;
133 133
         
134
-    	/* BEGIN - SECURITY GROUPS */
135
-    	//Need to hijack this as security groups will not contain a link on the module side
136
-    	//due to the way the module works. Plus it would remove the relative ease of adding custom module support
134
+        /* BEGIN - SECURITY GROUPS */
135
+        //Need to hijack this as security groups will not contain a link on the module side
136
+        //due to the way the module works. Plus it would remove the relative ease of adding custom module support
137 137
     	
138
-    	if(get_class($rhs) != 'User' && get_class($rhs) != 'ACLRole' && get_class($lhs) == 'SecurityGroup') {
139
-			$rhs->$rhsLinkName->addBean($lhs);			
140
-			$this->callBeforeAdd($rhs, $lhs, $rhsLinkName);
141
-
142
-			$dataToInsert = $this->getRowToInsert($lhs, $rhs, $additionalFields);
143
-			$this->addRow($dataToInsert);
144
-    		$rhs->$rhsLinkName->addBean($lhs);
145
-    		$this->callAfterAdd($lhs, $rhs, $lhsLinkName);
146
-    	} else if(get_class($lhs) != 'User' && get_class($lhs) != 'ACLRole' && get_class($rhs) == 'SecurityGroup') {
147
-			$lhs->$lhsLinkName->addBean($rhs);			
148
-			$this->callBeforeAdd($lhs, $rhs, $lhsLinkName);
149
-
150
-			$dataToInsert = $this->getRowToInsert($lhs, $rhs, $additionalFields);
151
-			$this->addRow($dataToInsert);
152
-    		$lhs->$lhsLinkName->addBean($rhs);
153
-    		$this->callAfterAdd($rhs, $lhs, $rhsLinkName);
154
-    	} else {
155
-    	/* END - SECURITY GROUPS */
138
+        if(get_class($rhs) != 'User' && get_class($rhs) != 'ACLRole' && get_class($lhs) == 'SecurityGroup') {
139
+            $rhs->$rhsLinkName->addBean($lhs);			
140
+            $this->callBeforeAdd($rhs, $lhs, $rhsLinkName);
141
+
142
+            $dataToInsert = $this->getRowToInsert($lhs, $rhs, $additionalFields);
143
+            $this->addRow($dataToInsert);
144
+            $rhs->$rhsLinkName->addBean($lhs);
145
+            $this->callAfterAdd($lhs, $rhs, $lhsLinkName);
146
+        } else if(get_class($lhs) != 'User' && get_class($lhs) != 'ACLRole' && get_class($rhs) == 'SecurityGroup') {
147
+            $lhs->$lhsLinkName->addBean($rhs);			
148
+            $this->callBeforeAdd($lhs, $rhs, $lhsLinkName);
149
+
150
+            $dataToInsert = $this->getRowToInsert($lhs, $rhs, $additionalFields);
151
+            $this->addRow($dataToInsert);
152
+            $lhs->$lhsLinkName->addBean($rhs);
153
+            $this->callAfterAdd($rhs, $lhs, $rhsLinkName);
154
+        } else {
155
+        /* END - SECURITY GROUPS */
156 156
 
157 157
         if (empty($lhs->$lhsLinkName) && !$lhs->load_relationship($lhsLinkName))
158 158
         {
@@ -262,50 +262,50 @@  discard block
 block discarded – undo
262 262
             return false;
263 263
         }
264 264
         
265
-    	/* BEGIN - SECURITY GROUPS */
266
-    	//Need to hijack this as security groups will not contain a link on the module side
267
-    	//due to the way the module works. Plus it would remove the relative ease of adding custom module support
265
+        /* BEGIN - SECURITY GROUPS */
266
+        //Need to hijack this as security groups will not contain a link on the module side
267
+        //due to the way the module works. Plus it would remove the relative ease of adding custom module support
268 268
     	
269
-    	if(get_class($lhs) == 'SecurityGroup' || get_class($rhs) == 'SecurityGroup') {
270
-			$dataToRemove = array(
271
-				$this->def['join_key_lhs'] => $lhs->id,
272
-				$this->def['join_key_rhs'] => $rhs->id
273
-			);
274
-
275
-
276
-              if (empty($_SESSION['disable_workflow']) || $_SESSION['disable_workflow'] != "Yes")
277
-              {
278
-                  if (get_class($lhs) != 'SecurityGroup' && $lhs->$lhsLinkName instanceof Link2)
279
-                  {
280
-                      $lhs->$lhsLinkName->load();
281
-                      $this->callBeforeDelete($lhs, $rhs, $lhsLinkName);
282
-                  }
283
-
284
-                  if (get_class($rhs) != 'SecurityGroup' && $rhs->$rhsLinkName instanceof Link2)
285
-                  {
286
-                      $rhs->$rhsLinkName->load();
287
-                      $this->callBeforeDelete($rhs, $lhs, $rhsLinkName);
288
-                  }
289
-              }
290
-
291
-			$this->removeRow($dataToRemove);
269
+        if(get_class($lhs) == 'SecurityGroup' || get_class($rhs) == 'SecurityGroup') {
270
+            $dataToRemove = array(
271
+                $this->def['join_key_lhs'] => $lhs->id,
272
+                $this->def['join_key_rhs'] => $rhs->id
273
+            );
274
+
275
+
276
+                if (empty($_SESSION['disable_workflow']) || $_SESSION['disable_workflow'] != "Yes")
277
+                {
278
+                    if (get_class($lhs) != 'SecurityGroup' && $lhs->$lhsLinkName instanceof Link2)
279
+                    {
280
+                        $lhs->$lhsLinkName->load();
281
+                        $this->callBeforeDelete($lhs, $rhs, $lhsLinkName);
282
+                    }
283
+
284
+                    if (get_class($rhs) != 'SecurityGroup' && $rhs->$rhsLinkName instanceof Link2)
285
+                    {
286
+                        $rhs->$rhsLinkName->load();
287
+                        $this->callBeforeDelete($rhs, $lhs, $rhsLinkName);
288
+                    }
289
+                }
290
+
291
+            $this->removeRow($dataToRemove);
292 292
 			
293
-			if (empty($_SESSION['disable_workflow']) || $_SESSION['disable_workflow'] != "Yes")
294
-			{
295
-				if (get_class($lhs) != 'SecurityGroup' && $lhs->$lhsLinkName instanceof Link2)
296
-				{
297
-					$lhs->$lhsLinkName->load();
298
-					$this->callAfterDelete($lhs, $rhs, $lhsLinkName);
299
-				}
300
-
301
-				if (get_class($rhs) != 'SecurityGroup' && $rhs->$rhsLinkName instanceof Link2)
302
-				{
303
-					$rhs->$rhsLinkName->load();
304
-					$this->callAfterDelete($rhs, $lhs, $rhsLinkName);
305
-				}
306
-			}
307
-		} else {
308
-    	/* END - SECURITY GROUPS */        
293
+            if (empty($_SESSION['disable_workflow']) || $_SESSION['disable_workflow'] != "Yes")
294
+            {
295
+                if (get_class($lhs) != 'SecurityGroup' && $lhs->$lhsLinkName instanceof Link2)
296
+                {
297
+                    $lhs->$lhsLinkName->load();
298
+                    $this->callAfterDelete($lhs, $rhs, $lhsLinkName);
299
+                }
300
+
301
+                if (get_class($rhs) != 'SecurityGroup' && $rhs->$rhsLinkName instanceof Link2)
302
+                {
303
+                    $rhs->$rhsLinkName->load();
304
+                    $this->callAfterDelete($rhs, $lhs, $rhsLinkName);
305
+                }
306
+            }
307
+        } else {
308
+        /* END - SECURITY GROUPS */        
309 309
         if (empty($lhs->$lhsLinkName) && !$lhs->load_relationship($lhsLinkName))
310 310
         {
311 311
             $GLOBALS['log']->fatal("could not load LHS $lhsLinkName");
@@ -512,9 +512,9 @@  discard block
 block discarded – undo
512 512
         //First join the relationship table
513 513
         $join .= "$join_type $joinTableWithAlias ON $join1 AND $joinTable.deleted=0\n"
514 514
         //Next add any role filters
515
-               . $this->getRoleWhere($joinTable) . "\n"
515
+                . $this->getRoleWhere($joinTable) . "\n"
516 516
         //Then finally join the related module's table
517
-               . "$join_type $targetTableWithAlias ON $join2 AND $targetTable.deleted=0\n";
517
+                . "$join_type $targetTableWithAlias ON $join2 AND $targetTable.deleted=0\n";
518 518
 
519 519
         if($return_array){
520 520
             return array(
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
         //First join the relationship table
567 567
         $query .= "$join_type $joinTableWithAlias ON $where AND $joinTable.deleted=0\n"
568 568
         //Next add any role filters
569
-               . $this->getRoleWhere($joinTable, $ignoreRole) . "\n";
569
+                . $this->getRoleWhere($joinTable, $ignoreRole) . "\n";
570 570
 
571 571
         if (!empty($params['return_as_array'])) {
572 572
             $return_array = true;
Please login to merge, or discard this patch.
data/Relationships/One2MRelationship.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             );
101 101
             if (!isset($this->lhsLinkDef['name']) && isset($this->lhsLinkDef[0]))
102 102
             {
103
-              $this->lhsLinkDef = $this->lhsLinkDef[0];
103
+                $this->lhsLinkDef = $this->lhsLinkDef[0];
104 104
             }
105 105
             if (!isset($this->rhsLinkDef['name']) && isset($this->rhsLinkDef[0])) {
106 106
                 $this->rhsLinkDef = $this->rhsLinkDef[0];
@@ -128,35 +128,35 @@  discard block
 block discarded – undo
128 128
         //If the current data matches the existing data, don't do anything
129 129
         if (!$this->checkExisting($dataToInsert))
130 130
         {
131
-			// Pre-load the RHS relationship, which is used later in the add() function and expects a Bean
132
-			// and we also use it for clearing relationships in case of non self-referencing O2M relations
133
-			// (should be preloaded because when using the relate_to field for updating/saving relationships,
134
-			// only the bean id is loaded into $rhs->$rhsLinkName)
135
-			$rhsLinkName = $this->rhsLink;
136
-			$rhs->load_relationship($rhsLinkName);
131
+            // Pre-load the RHS relationship, which is used later in the add() function and expects a Bean
132
+            // and we also use it for clearing relationships in case of non self-referencing O2M relations
133
+            // (should be preloaded because when using the relate_to field for updating/saving relationships,
134
+            // only the bean id is loaded into $rhs->$rhsLinkName)
135
+            $rhsLinkName = $this->rhsLink;
136
+            $rhs->load_relationship($rhsLinkName);
137 137
         	
138
-			// If it's a One2Many self-referencing relationship
139
-        	// the positions of the default One (LHS) and Many (RHS) are swaped
140
-        	// so we should clear the links from the many (left) side
141
-        	if ($this->selfReferencing) {
142
-        		// Load right hand side relationship name
143
-	            $linkName = $this->rhsLink;
144
-	            // Load the relationship into the left hand side bean
145
-	            $lhs->load_relationship($linkName);
138
+            // If it's a One2Many self-referencing relationship
139
+            // the positions of the default One (LHS) and Many (RHS) are swaped
140
+            // so we should clear the links from the many (left) side
141
+            if ($this->selfReferencing) {
142
+                // Load right hand side relationship name
143
+                $linkName = $this->rhsLink;
144
+                // Load the relationship into the left hand side bean
145
+                $lhs->load_relationship($linkName);
146 146
 	            
147
-	            // Pick the loaded link
148
-	            $link = $lhs->$linkName;
149
-	            // Get many (LHS) side bean
150
-	            $focus = $link->getFocus();
151
-	            // Get relations
152
-	        	$related = $link->getBeans();
147
+                // Pick the loaded link
148
+                $link = $lhs->$linkName;
149
+                // Get many (LHS) side bean
150
+                $focus = $link->getFocus();
151
+                // Get relations
152
+                $related = $link->getBeans();
153 153
 	        	
154
-        		// Clear the relations from many side bean
155
-	        	foreach($related as $relBean) {
156
-	        		$this->remove($focus, $relBean);
157
-	        	}
154
+                // Clear the relations from many side bean
155
+                foreach($related as $relBean) {
156
+                    $this->remove($focus, $relBean);
157
+                }
158 158
             } else { // For non self-referencing, remove all the relationships from the many (RHS) side
159
-            	$this->removeAll($rhs->$rhsLinkName);
159
+                $this->removeAll($rhs->$rhsLinkName);
160 160
             }
161 161
             
162 162
             // Add relationship
Please login to merge, or discard this patch.
data/Relationships/RelationshipFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -213,9 +213,9 @@
 block discarded – undo
213 213
         $buildingRelCache = false;
214 214
     }
215 215
 
216
-	protected function getCacheFile() {
217
-		return sugar_cached("Relationships/relationships.cache.php");
218
-	}
216
+    protected function getCacheFile() {
217
+        return sugar_cached("Relationships/relationships.cache.php");
218
+    }
219 219
 
220 220
 
221 221
 
Please login to merge, or discard this patch.
soap.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
- if(!defined('sugarEntry'))define('sugarEntry', true);
2
+    if(!defined('sugarEntry'))define('sugarEntry', true);
3 3
 /*********************************************************************************
4 4
  * SugarCRM Community Edition is a customer relationship management program developed by
5 5
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
 //New API is in these files
67 67
 if(!empty($administrator->settings['portal_on'])) {
68
-	require_once('soap/SoapPortalUsers.php');
68
+    require_once('soap/SoapPortalUsers.php');
69 69
 }
70 70
 
71 71
 require_once('soap/SoapSugarUsers.php');
@@ -88,9 +88,9 @@  discard block
 block discarded – undo
88 88
 $observers = $resourceManager->getObservers();
89 89
 //Call set_soap_server for SoapResourceObserver instance(s)
90 90
 foreach($observers as $observer) {
91
-   if(method_exists($observer, 'set_soap_server')) {
92
-   	  $observer->set_soap_server($server);
93
-   }
91
+    if(method_exists($observer, 'set_soap_server')) {
92
+            $observer->set_soap_server($server);
93
+    }
94 94
 }
95 95
 
96 96
 $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
Please login to merge, or discard this patch.
modules/Connectors/InstallDefaultConnectors.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -40,26 +40,26 @@  discard block
 block discarded – undo
40 40
 
41 41
 
42 42
 $default_modules_sources = array (
43
-  'Accounts' =>
44
-  array (
45
-     'ext_rest_insideview' => 'ext_rest_insideview',
46
-  ),
47
-  'Contacts' =>
48
-  array (
49
-     'ext_rest_insideview' => 'ext_rest_insideview',
50
-  ),
51
-  'Leads' =>
52
-  array (
53
-     'ext_rest_insideview' => 'ext_rest_insideview',
54
-  ),
55
-  'Prospects' =>
56
-  array (
43
+    'Accounts' =>
44
+    array (
45
+        'ext_rest_insideview' => 'ext_rest_insideview',
46
+    ),
47
+    'Contacts' =>
48
+    array (
49
+        'ext_rest_insideview' => 'ext_rest_insideview',
50
+    ),
51
+    'Leads' =>
52
+    array (
53
+        'ext_rest_insideview' => 'ext_rest_insideview',
54
+    ),
55
+    'Prospects' =>
56
+    array (
57 57
 
58
-  ),
59
-  'Opportunities' =>
60
-  array (
58
+    ),
59
+    'Opportunities' =>
60
+    array (
61 61
     'ext_rest_insideview' => 'ext_rest_insideview',
62
-  ),
62
+    ),
63 63
 );
64 64
 
65 65
 $previous_connectors = array();
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
 }
104 104
 
105 105
 if(!file_exists('custom/modules/Connectors/metadata')) {
106
-   mkdir_recursive('custom/modules/Connectors/metadata');
106
+    mkdir_recursive('custom/modules/Connectors/metadata');
107 107
 }
108 108
 
109 109
 if(!write_array_to_file('modules_sources', $default_modules_sources, 'custom/modules/Connectors/metadata/display_config.php')) {
110
-   $GLOBALS['log']->fatal('Cannot write file custom/modules/Connectors/metadata/display_config.php');
110
+    $GLOBALS['log']->fatal('Cannot write file custom/modules/Connectors/metadata/display_config.php');
111 111
 }
112 112
 
113 113
 ?>
Please login to merge, or discard this patch.
modules/Connectors/ConnectorRecord.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,14 +41,14 @@
 block discarded – undo
41 41
 
42 42
 
43 43
 
44
- class ConnectorRecord extends MergeRecord{
45
-	var $object_name = 'ConnectorRecord';
44
+    class ConnectorRecord extends MergeRecord{
45
+    var $object_name = 'ConnectorRecord';
46 46
     var $module_dir = 'Connector'; 
47 47
     
48 48
     
49 49
     function ConnectorRecord($merge_module = '', $merge_id = '') {
50
-       parent::MergeRecord($merge_module, $merge_id);
50
+        parent::MergeRecord($merge_module, $merge_id);
51 51
     }
52 52
 
53
- }
53
+    }
54 54
 ?>
Please login to merge, or discard this patch.
modules/AOK_KnowledgeBase/language/en_us.lang.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -38,43 +38,43 @@
 block discarded – undo
38 38
  ********************************************************************************/
39 39
 
40 40
 $mod_strings = array (
41
-  'LBL_ASSIGNED_TO_ID' => 'Assigned User Id',
42
-  'LBL_ASSIGNED_TO_NAME' => 'Assigned to',
43
-  'LBL_ID' => 'ID',
44
-  'LBL_DATE_ENTERED' => 'Date Created',
45
-  'LBL_DATE_MODIFIED' => 'Date Modified',
46
-  'LBL_MODIFIED' => 'Modified By',
47
-  'LBL_MODIFIED_ID' => 'Modified By Id',
48
-  'LBL_MODIFIED_NAME' => 'Modified By Name',
49
-  'LBL_CREATED' => 'Created By',
50
-  'LBL_CREATED_ID' => 'Created By Id',
51
-  'LBL_DESCRIPTION' => 'Body',
52
-  'LBL_ADDITIONAL_INFO' => 'Resolution',
53
-  'LBL_DELETED' => 'Deleted',
54
-  'LBL_NAME' => 'Title',
55
-  'LBL_CREATED_USER' => 'Created by User',
56
-  'LBL_MODIFIED_USER' => 'Modified by User',
57
-  'LBL_LIST_NAME' => 'Name',
58
-  'LBL_EDIT_BUTTON' => 'Edit',
59
-  'LBL_REMOVE' => 'Remove',
60
-  'LBL_LIST_FORM_TITLE' => 'Knowledge Base List',
61
-  'LBL_MODULE_NAME' => 'Knowledge Base',
62
-  'LBL_MODULE_TITLE' => 'Knowledge Base',
63
-  'LBL_HOMEPAGE_TITLE' => 'My Knowledge Base',
64
-  'LNK_NEW_RECORD' => 'Create Knowledge Base',
65
-  'LNK_LIST' => 'View Knowledge Base',
66
-  'LNK_IMPORT_AOK_KNOWLEDGEBASE' => 'Import Knowledge Base',
67
-  'LBL_SEARCH_FORM_TITLE' => 'Search Knowledge Base',
68
-  'LBL_HISTORY_SUBPANEL_TITLE' => 'View History',
69
-  'LBL_ACTIVITIES_SUBPANEL_TITLE' => 'Activities',
70
-  'LBL_AOK_KNOWLEDGEBASE_SUBPANEL_TITLE' => 'Knowledge Base',
71
-  'LBL_NEW_FORM_TITLE' => 'New Knowledge Base',
72
-  'LBL_STATUS' => 'Status',
73
-  'LBL_REVISION' => 'Revision',
74
-  'LBL_AUTHOR_USER_ID' => 'Author (related User ID)',
75
-  'LBL_AUTHOR' => 'Author',
76
-  'LBL_APPROVER_USER_ID' => 'Approver (related User ID)',
77
-  'LBL_APPROVER' => 'Approver',
41
+    'LBL_ASSIGNED_TO_ID' => 'Assigned User Id',
42
+    'LBL_ASSIGNED_TO_NAME' => 'Assigned to',
43
+    'LBL_ID' => 'ID',
44
+    'LBL_DATE_ENTERED' => 'Date Created',
45
+    'LBL_DATE_MODIFIED' => 'Date Modified',
46
+    'LBL_MODIFIED' => 'Modified By',
47
+    'LBL_MODIFIED_ID' => 'Modified By Id',
48
+    'LBL_MODIFIED_NAME' => 'Modified By Name',
49
+    'LBL_CREATED' => 'Created By',
50
+    'LBL_CREATED_ID' => 'Created By Id',
51
+    'LBL_DESCRIPTION' => 'Body',
52
+    'LBL_ADDITIONAL_INFO' => 'Resolution',
53
+    'LBL_DELETED' => 'Deleted',
54
+    'LBL_NAME' => 'Title',
55
+    'LBL_CREATED_USER' => 'Created by User',
56
+    'LBL_MODIFIED_USER' => 'Modified by User',
57
+    'LBL_LIST_NAME' => 'Name',
58
+    'LBL_EDIT_BUTTON' => 'Edit',
59
+    'LBL_REMOVE' => 'Remove',
60
+    'LBL_LIST_FORM_TITLE' => 'Knowledge Base List',
61
+    'LBL_MODULE_NAME' => 'Knowledge Base',
62
+    'LBL_MODULE_TITLE' => 'Knowledge Base',
63
+    'LBL_HOMEPAGE_TITLE' => 'My Knowledge Base',
64
+    'LNK_NEW_RECORD' => 'Create Knowledge Base',
65
+    'LNK_LIST' => 'View Knowledge Base',
66
+    'LNK_IMPORT_AOK_KNOWLEDGEBASE' => 'Import Knowledge Base',
67
+    'LBL_SEARCH_FORM_TITLE' => 'Search Knowledge Base',
68
+    'LBL_HISTORY_SUBPANEL_TITLE' => 'View History',
69
+    'LBL_ACTIVITIES_SUBPANEL_TITLE' => 'Activities',
70
+    'LBL_AOK_KNOWLEDGEBASE_SUBPANEL_TITLE' => 'Knowledge Base',
71
+    'LBL_NEW_FORM_TITLE' => 'New Knowledge Base',
72
+    'LBL_STATUS' => 'Status',
73
+    'LBL_REVISION' => 'Revision',
74
+    'LBL_AUTHOR_USER_ID' => 'Author (related User ID)',
75
+    'LBL_AUTHOR' => 'Author',
76
+    'LBL_APPROVER_USER_ID' => 'Approver (related User ID)',
77
+    'LBL_APPROVER' => 'Approver',
78 78
 );
79 79
 
80 80
 $mod_strings['LBL_AOK_KB_CATEGORIES_TITLE'] = 'Categories';
81 81
\ No newline at end of file
Please login to merge, or discard this patch.