Completed
Push — CI ( ee6bd7...0f01dd )
by Adam
22:32
created
modules/Connectors/InstallDefaultConnectors.php 3 patches
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.
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
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.
@@ -39,34 +39,34 @@  discard block
 block discarded – undo
39 39
  ********************************************************************************/
40 40
 
41 41
 
42
-$default_modules_sources = array (
42
+$default_modules_sources = array(
43 43
   'Accounts' =>
44
-  array (
44
+  array(
45 45
      'ext_rest_insideview' => 'ext_rest_insideview',
46 46
   ),
47 47
   'Contacts' =>
48
-  array (
48
+  array(
49 49
      'ext_rest_insideview' => 'ext_rest_insideview',
50 50
   ),
51 51
   'Leads' =>
52
-  array (
52
+  array(
53 53
      'ext_rest_insideview' => 'ext_rest_insideview',
54 54
   ),
55 55
   'Prospects' =>
56
-  array (
56
+  array(
57 57
 
58 58
   ),
59 59
   'Opportunities' =>
60
-  array (
60
+  array(
61 61
     'ext_rest_insideview' => 'ext_rest_insideview',
62 62
   ),
63 63
 );
64 64
 
65 65
 $previous_connectors = array();
66
-if(file_exists('custom/modules/Connectors/metadata/connectors.php')){
66
+if (file_exists('custom/modules/Connectors/metadata/connectors.php')) {
67 67
     require('custom/modules/Connectors/metadata/connectors.php');
68 68
 
69
-    foreach($connectors as $connector_array){
69
+    foreach ($connectors as $connector_array) {
70 70
         $connector_id = $connector_array['id'];
71 71
         $previous_connectors[$connector_id] = $connector_id;
72 72
     }
@@ -74,14 +74,14 @@  discard block
 block discarded – undo
74 74
 
75 75
 // Merge in old modules the customer added instead of overriding it completely with defaults
76 76
 // If they have customized their connectors modules
77
-if(file_exists('custom/modules/Connectors/metadata/display_config.php')){
77
+if (file_exists('custom/modules/Connectors/metadata/display_config.php')) {
78 78
     require('custom/modules/Connectors/metadata/display_config.php');
79 79
 
80 80
     // Remove the default settings from being copied over since they already existed
81
-    foreach($default_modules_sources as $module => $sources){
82
-        foreach($sources as $source_key => $source){
83
-            foreach($previous_connectors as $previous_connector){
84
-                if(in_array($previous_connector, $default_modules_sources[$module])){
81
+    foreach ($default_modules_sources as $module => $sources) {
82
+        foreach ($sources as $source_key => $source) {
83
+            foreach ($previous_connectors as $previous_connector) {
84
+                if (in_array($previous_connector, $default_modules_sources[$module])) {
85 85
                     unset($default_modules_sources[$module][$previous_connector]);
86 86
                 }
87 87
             }
@@ -89,24 +89,24 @@  discard block
 block discarded – undo
89 89
     }
90 90
 
91 91
     // Merge in the new connector default settings with the current settings
92
-    if ( isset($modules_sources) && is_array($modules_sources) ) {
93
-        foreach($modules_sources as $module => $sources){
94
-            if(!empty($default_modules_sources[$module])){
92
+    if (isset($modules_sources) && is_array($modules_sources)) {
93
+        foreach ($modules_sources as $module => $sources) {
94
+            if (!empty($default_modules_sources[$module])) {
95 95
                 $merged = array_merge($modules_sources[$module], $default_modules_sources[$module]);
96 96
                 $default_modules_sources[$module] = $merged;
97 97
             }
98
-            else{
98
+            else {
99 99
                 $default_modules_sources[$module] = $modules_sources[$module];
100 100
             }
101 101
         }
102 102
     }
103 103
 }
104 104
 
105
-if(!file_exists('custom/modules/Connectors/metadata')) {
105
+if (!file_exists('custom/modules/Connectors/metadata')) {
106 106
    mkdir_recursive('custom/modules/Connectors/metadata');
107 107
 }
108 108
 
109
-if(!write_array_to_file('modules_sources', $default_modules_sources, 'custom/modules/Connectors/metadata/display_config.php')) {
109
+if (!write_array_to_file('modules_sources', $default_modules_sources, 'custom/modules/Connectors/metadata/display_config.php')) {
110 110
    $GLOBALS['log']->fatal('Cannot write file custom/modules/Connectors/metadata/display_config.php');
111 111
 }
112 112
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -94,8 +96,7 @@  discard block
 block discarded – undo
94 96
             if(!empty($default_modules_sources[$module])){
95 97
                 $merged = array_merge($modules_sources[$module], $default_modules_sources[$module]);
96 98
                 $default_modules_sources[$module] = $merged;
97
-            }
98
-            else{
99
+            } else{
99 100
                 $default_modules_sources[$module] = $modules_sources[$module];
100 101
             }
101 102
         }
Please login to merge, or discard this patch.
modules/Connectors/ConnectorRecord.php 3 patches
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 3
 
4 4
 /*********************************************************************************
5 5
  * SugarCRM Community Edition is a customer relationship management program developed by
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
 
43 43
 
44
- class ConnectorRecord extends MergeRecord{
44
+ class ConnectorRecord extends MergeRecord {
45 45
 	var $object_name = 'ConnectorRecord';
46 46
     var $module_dir = 'Connector'; 
47 47
     
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
Please login to merge, or discard this patch.
modules/Connectors/action_view_map.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,16 +38,16 @@
 block discarded – undo
38 38
  ********************************************************************************/
39 39
 
40 40
 
41
-$action_view_map['retrievesource']= 'retrievesource';
42
-$action_view_map['step1']= 'step1';
43
-$action_view_map['step2']= 'step2';
41
+$action_view_map['retrievesource'] = 'retrievesource';
42
+$action_view_map['step1'] = 'step1';
43
+$action_view_map['step2'] = 'step2';
44 44
 
45 45
 //Admin main page
46 46
 $action_view_map['connectorsettings'] = 'connectorsettings';
47 47
 
48 48
 //Admin pages for the connector properties
49 49
 $action_view_map['modifyproperties'] = 'modifyproperties';
50
-$action_view_map['sourceproperties']= 'sourceproperties';
50
+$action_view_map['sourceproperties'] = 'sourceproperties';
51 51
 
52 52
 //Admin pages to enable/disable connector for modules
53 53
 $action_view_map['modifydisplay'] = 'modifydisplay';
Please login to merge, or discard this patch.
modules/AOK_KnowledgeBase/language/en_us.lang.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
  * @author SalesAgility <[email protected]>
23 23
  */
24 24
 
25
-$mod_strings = array (
25
+$mod_strings = array(
26 26
   'LBL_ASSIGNED_TO_ID' => 'Assigned User Id',
27 27
   'LBL_ASSIGNED_TO_NAME' => 'Assigned to',
28 28
   'LBL_ID' => 'ID',
Please login to merge, or discard this patch.
modules/AOK_KnowledgeBase/AOK_KnowledgeBase_sugar.php 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -45,42 +45,42 @@
 block discarded – undo
45 45
 
46 46
 
47 47
 class AOK_KnowledgeBase_sugar extends Basic {
48
-	var $new_schema = true;
49
-	var $module_dir = 'AOK_KnowledgeBase';
50
-	var $object_name = 'AOK_KnowledgeBase';
51
-	var $table_name = 'aok_knowledgebase';
52
-	var $importable = false;
53
-	var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
54
-		var $id;
55
-		var $name;
56
-		var $date_entered;
57
-		var $date_modified;
58
-		var $modified_user_id;
59
-		var $modified_by_name;
60
-		var $created_by;
61
-		var $created_by_name;
62
-		var $description;
63
-		var $deleted;
64
-		var $created_by_link;
65
-		var $modified_user_link;
66
-		var $assigned_user_id;
67
-		var $assigned_user_name;
68
-		var $assigned_user_link;
69
-		var $status;
70
-		var $revision;
71
-		var $user_id_c;
72
-		var $author;
73
-		var $user_id1_c;
74
-		var $approver;
75
-		function AOK_KnowledgeBase_sugar(){	
76
-		parent::Basic();
77
-	}
48
+    var $new_schema = true;
49
+    var $module_dir = 'AOK_KnowledgeBase';
50
+    var $object_name = 'AOK_KnowledgeBase';
51
+    var $table_name = 'aok_knowledgebase';
52
+    var $importable = false;
53
+    var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
54
+        var $id;
55
+        var $name;
56
+        var $date_entered;
57
+        var $date_modified;
58
+        var $modified_user_id;
59
+        var $modified_by_name;
60
+        var $created_by;
61
+        var $created_by_name;
62
+        var $description;
63
+        var $deleted;
64
+        var $created_by_link;
65
+        var $modified_user_link;
66
+        var $assigned_user_id;
67
+        var $assigned_user_name;
68
+        var $assigned_user_link;
69
+        var $status;
70
+        var $revision;
71
+        var $user_id_c;
72
+        var $author;
73
+        var $user_id1_c;
74
+        var $approver;
75
+        function AOK_KnowledgeBase_sugar(){	
76
+        parent::Basic();
77
+    }
78 78
 	
79
-	function bean_implements($interface){
80
-		switch($interface){
81
-			case 'ACL': return true;
82
-		}
83
-		return false;
79
+    function bean_implements($interface){
80
+        switch($interface){
81
+            case 'ACL': return true;
82
+        }
83
+        return false;
84 84
 }
85 85
 		
86 86
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	var $object_name = 'AOK_KnowledgeBase';
51 51
 	var $table_name = 'aok_knowledgebase';
52 52
 	var $importable = false;
53
-	var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
53
+	var $disable_row_level_security = true; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
54 54
 		var $id;
55 55
 		var $name;
56 56
 		var $date_entered;
@@ -72,12 +72,12 @@  discard block
 block discarded – undo
72 72
 		var $author;
73 73
 		var $user_id1_c;
74 74
 		var $approver;
75
-		function AOK_KnowledgeBase_sugar(){	
75
+		function AOK_KnowledgeBase_sugar() {	
76 76
 		parent::Basic();
77 77
 	}
78 78
 	
79
-	function bean_implements($interface){
80
-		switch($interface){
79
+	function bean_implements($interface) {
80
+		switch ($interface) {
81 81
 			case 'ACL': return true;
82 82
 		}
83 83
 		return false;
Please login to merge, or discard this patch.
modules/AOK_KnowledgeBase/AOK_KnowledgeBase.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@
 block discarded – undo
43 43
 require_once('modules/AOK_KnowledgeBase/AOK_KnowledgeBase_sugar.php');
44 44
 class AOK_KnowledgeBase extends AOK_KnowledgeBase_sugar {
45 45
 	
46
-	function AOK_KnowledgeBase(){	
47
-		parent::AOK_KnowledgeBase_sugar();
48
-	}
46
+    function AOK_KnowledgeBase(){	
47
+        parent::AOK_KnowledgeBase_sugar();
48
+    }
49 49
 	
50 50
 }
51 51
 ?>
52 52
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 require_once('modules/AOK_KnowledgeBase/AOK_KnowledgeBase_sugar.php');
44 44
 class AOK_KnowledgeBase extends AOK_KnowledgeBase_sugar {
45 45
 	
46
-	function AOK_KnowledgeBase(){	
46
+	function AOK_KnowledgeBase() {	
47 47
 		parent::AOK_KnowledgeBase_sugar();
48 48
 	}
49 49
 	
Please login to merge, or discard this patch.
modules/FP_Event_Locations/FP_Event_Locations.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@
 block discarded – undo
43 43
 require_once('modules/FP_Event_Locations/FP_Event_Locations_sugar.php');
44 44
 class FP_Event_Locations extends FP_Event_Locations_sugar {
45 45
 	
46
-	function FP_Event_Locations(){	
47
-		parent::FP_Event_Locations_sugar();
48
-	}
46
+    function FP_Event_Locations(){	
47
+        parent::FP_Event_Locations_sugar();
48
+    }
49 49
 	
50 50
 }
51 51
 ?>
52 52
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 require_once('modules/FP_Event_Locations/FP_Event_Locations_sugar.php');
44 44
 class FP_Event_Locations extends FP_Event_Locations_sugar {
45 45
 	
46
-	function FP_Event_Locations(){	
46
+	function FP_Event_Locations() {	
47 47
 		parent::FP_Event_Locations_sugar();
48 48
 	}
49 49
 	
Please login to merge, or discard this patch.
modules/FP_Event_Locations/FP_Event_Locations_sugar.php 2 patches
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -45,36 +45,36 @@
 block discarded – undo
45 45
 
46 46
 
47 47
 class FP_Event_Locations_sugar extends Basic {
48
-	var $new_schema = true;
49
-	var $module_dir = 'FP_Event_Locations';
50
-	var $object_name = 'FP_Event_Locations';
51
-	var $table_name = 'fp_event_locations';
52
-	var $importable = false;
53
-	var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
54
-		var $id;
55
-		var $name;
56
-		var $date_entered;
57
-		var $date_modified;
58
-		var $modified_user_id;
59
-		var $modified_by_name;
60
-		var $created_by;
61
-		var $created_by_name;
62
-		var $description;
63
-		var $deleted;
64
-		var $created_by_link;
65
-		var $modified_user_link;
66
-		var $assigned_user_id;
67
-		var $assigned_user_name;
68
-		var $assigned_user_link;
69
-		function FP_Event_Locations_sugar(){	
70
-		parent::Basic();
71
-	}
48
+    var $new_schema = true;
49
+    var $module_dir = 'FP_Event_Locations';
50
+    var $object_name = 'FP_Event_Locations';
51
+    var $table_name = 'fp_event_locations';
52
+    var $importable = false;
53
+    var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
54
+        var $id;
55
+        var $name;
56
+        var $date_entered;
57
+        var $date_modified;
58
+        var $modified_user_id;
59
+        var $modified_by_name;
60
+        var $created_by;
61
+        var $created_by_name;
62
+        var $description;
63
+        var $deleted;
64
+        var $created_by_link;
65
+        var $modified_user_link;
66
+        var $assigned_user_id;
67
+        var $assigned_user_name;
68
+        var $assigned_user_link;
69
+        function FP_Event_Locations_sugar(){	
70
+        parent::Basic();
71
+    }
72 72
 	
73
-	function bean_implements($interface){
74
-		switch($interface){
75
-			case 'ACL': return true;
76
-		}
77
-		return false;
73
+    function bean_implements($interface){
74
+        switch($interface){
75
+            case 'ACL': return true;
76
+        }
77
+        return false;
78 78
 }
79 79
 		
80 80
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	var $object_name = 'FP_Event_Locations';
51 51
 	var $table_name = 'fp_event_locations';
52 52
 	var $importable = false;
53
-	var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
53
+	var $disable_row_level_security = true; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
54 54
 		var $id;
55 55
 		var $name;
56 56
 		var $date_entered;
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 		var $assigned_user_id;
67 67
 		var $assigned_user_name;
68 68
 		var $assigned_user_link;
69
-		function FP_Event_Locations_sugar(){	
69
+		function FP_Event_Locations_sugar() {	
70 70
 		parent::Basic();
71 71
 	}
72 72
 	
73
-	function bean_implements($interface){
74
-		switch($interface){
73
+	function bean_implements($interface) {
74
+		switch ($interface) {
75 75
 			case 'ACL': return true;
76 76
 		}
77 77
 		return false;
Please login to merge, or discard this patch.
modules/Prospects/ProspectFormBase.php 3 patches
Indentation   +165 added lines, -165 removed lines patch added patch discarded remove patch
@@ -49,95 +49,95 @@  discard block
 block discarded – undo
49 49
 class ProspectFormBase  {
50 50
 
51 51
 function checkForDuplicates($prefix){
52
-	global $local_log;
53
-	require_once('include/formbase.php');
52
+    global $local_log;
53
+    require_once('include/formbase.php');
54 54
 	
55
-	$focus = new Prospect();
56
-	if(!checkRequired($prefix, array_keys($focus->required_fields))){
57
-		return null;
58
-	}
59
-	$query = '';
60
-	$baseQuery = 'select id,first_name, last_name, title, email1, email2  from prospects where deleted!=1 and (';
61
-	if(!empty($_POST[$prefix.'first_name']) && !empty($_POST[$prefix.'last_name'])){
62
-		$query = $baseQuery ."  (first_name like '". $_POST[$prefix.'first_name'] . "%' and last_name = '". $_POST[$prefix.'last_name'] ."')";
63
-	}else{
64
-			$query = $baseQuery ."  last_name = '". $_POST[$prefix.'last_name'] ."'";
65
-	}
66
-	if(!empty($_POST[$prefix.'email1'])){
67
-		if(empty($query)){
68
-		$query = $baseQuery. "  email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
69
-		}else {
70
-			$query .= "or email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
71
-		}
72
-	}
73
-	if(!empty($_POST[$prefix.'email2'])){
74
-		if(empty($query))	{
75
-			$query = $baseQuery. "  email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
76
-		}else{
77
-			$query .= "or email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
78
-		}
79
-
80
-	}
81
-
82
-	if(!empty($query)){
83
-		$rows = array();
55
+    $focus = new Prospect();
56
+    if(!checkRequired($prefix, array_keys($focus->required_fields))){
57
+        return null;
58
+    }
59
+    $query = '';
60
+    $baseQuery = 'select id,first_name, last_name, title, email1, email2  from prospects where deleted!=1 and (';
61
+    if(!empty($_POST[$prefix.'first_name']) && !empty($_POST[$prefix.'last_name'])){
62
+        $query = $baseQuery ."  (first_name like '". $_POST[$prefix.'first_name'] . "%' and last_name = '". $_POST[$prefix.'last_name'] ."')";
63
+    }else{
64
+            $query = $baseQuery ."  last_name = '". $_POST[$prefix.'last_name'] ."'";
65
+    }
66
+    if(!empty($_POST[$prefix.'email1'])){
67
+        if(empty($query)){
68
+        $query = $baseQuery. "  email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
69
+        }else {
70
+            $query .= "or email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
71
+        }
72
+    }
73
+    if(!empty($_POST[$prefix.'email2'])){
74
+        if(empty($query))	{
75
+            $query = $baseQuery. "  email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
76
+        }else{
77
+            $query .= "or email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
78
+        }
79
+
80
+    }
81
+
82
+    if(!empty($query)){
83
+        $rows = array();
84 84
 		
85
-		$db = DBManagerFactory::getInstance();
86
-		$result = $db->query($query.');');
85
+        $db = DBManagerFactory::getInstance();
86
+        $result = $db->query($query.');');
87 87
         while($row = $db->fetchByAssoc($result)) {
88 88
             $rows[] = $row;
89
-		}
90
-		if(count($rows) > 0) return $rows;
91
-		}
92
-	return null;
89
+        }
90
+        if(count($rows) > 0) return $rows;
91
+        }
92
+    return null;
93 93
 }
94 94
 
95 95
 
96 96
 function buildTableForm($rows, $mod=''){
97
-	global $action;
98
-	if(!empty($mod)){
99
-	global $current_language;
100
-	$mod_strings = return_module_language($current_language, $mod);
101
-	}else global $mod_strings;
102
-	global $app_strings;
103
-	$cols = sizeof($rows[0]) * 2 + 1;
104
-	if ($action != 'ShowDuplicates') 
105
-	{
106
-		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_DUPLICATE']. '</td></tr><tr><td height="20"></td></tr></table>';
107
-		$form .= "<form action='index.php' method='post' name='dupProspects'><input type='hidden' name='selectedProspect' value=''>";
108
-	}
109
-	else 
110
-	{
111
-		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_SHOW_DUPLICATES']. '</td></tr><tr><td height="20"></td></tr></table>';
112
-	}
113
-	$form .= get_form_header($mod_strings['LBL_DUPLICATE'],"", '');
114
-	$form .= "<table width='100%' cellpadding='0' cellspacing='0'>	<tr >	";
115
-	if ($action != 'ShowDuplicates') 
116
-	{
117
-		$form .= "<td > &nbsp;</td>";
118
-	}
119
-
120
-	require_once('include/formbase.php');
121
-	$form .= getPostToForm();
122
-
123
-	if(isset($rows[0])){
124
-		foreach ($rows[0] as $key=>$value){
125
-			if($key != 'id'){
126
-					$form .= "<td scope='col' >". $mod_strings[$mod_strings['db_'.$key]]. "</td>";
127
-			}
128
-		}
129
-		$form .= "</tr>";
130
-	}
131
-	$rowColor = 'oddListRowS1';
132
-	foreach($rows as $row){
133
-
134
-		$form .= "<tr class='$rowColor'>";
135
-		if ($action != 'ShowDuplicates') 
136
-			$form .= "<td width='1%' nowrap='nowrap' ><a href='#' onClick=\"document.dupProspects.selectedProspect.value='${row['id']}';document.dupProspects.submit() \">[${app_strings['LBL_SELECT_BUTTON_LABEL']}]</a>&nbsp;&nbsp;</td>\n";
97
+    global $action;
98
+    if(!empty($mod)){
99
+    global $current_language;
100
+    $mod_strings = return_module_language($current_language, $mod);
101
+    }else global $mod_strings;
102
+    global $app_strings;
103
+    $cols = sizeof($rows[0]) * 2 + 1;
104
+    if ($action != 'ShowDuplicates') 
105
+    {
106
+        $form = '<table width="100%"><tr><td>'.$mod_strings['MSG_DUPLICATE']. '</td></tr><tr><td height="20"></td></tr></table>';
107
+        $form .= "<form action='index.php' method='post' name='dupProspects'><input type='hidden' name='selectedProspect' value=''>";
108
+    }
109
+    else 
110
+    {
111
+        $form = '<table width="100%"><tr><td>'.$mod_strings['MSG_SHOW_DUPLICATES']. '</td></tr><tr><td height="20"></td></tr></table>';
112
+    }
113
+    $form .= get_form_header($mod_strings['LBL_DUPLICATE'],"", '');
114
+    $form .= "<table width='100%' cellpadding='0' cellspacing='0'>	<tr >	";
115
+    if ($action != 'ShowDuplicates') 
116
+    {
117
+        $form .= "<td > &nbsp;</td>";
118
+    }
119
+
120
+    require_once('include/formbase.php');
121
+    $form .= getPostToForm();
122
+
123
+    if(isset($rows[0])){
124
+        foreach ($rows[0] as $key=>$value){
125
+            if($key != 'id'){
126
+                    $form .= "<td scope='col' >". $mod_strings[$mod_strings['db_'.$key]]. "</td>";
127
+            }
128
+        }
129
+        $form .= "</tr>";
130
+    }
131
+    $rowColor = 'oddListRowS1';
132
+    foreach($rows as $row){
133
+
134
+        $form .= "<tr class='$rowColor'>";
135
+        if ($action != 'ShowDuplicates') 
136
+            $form .= "<td width='1%' nowrap='nowrap' ><a href='#' onClick=\"document.dupProspects.selectedProspect.value='${row['id']}';document.dupProspects.submit() \">[${app_strings['LBL_SELECT_BUTTON_LABEL']}]</a>&nbsp;&nbsp;</td>\n";
137 137
 		
138
-		$wasSet = false;
138
+        $wasSet = false;
139 139
 
140
-		foreach ($row as $key=>$value) {
140
+        foreach ($row as $key=>$value) {
141 141
             if($key != 'id') {
142 142
                 if(!$wasSet) {
143 143
                     $form .= "<td scope='row' ><a target='_blank' href='index.php?module=Prospects&action=DetailView&record=${row['id']}'>$value</a></td>\n";
@@ -147,25 +147,25 @@  discard block
 block discarded – undo
147 147
                     $form .= "<td><a target='_blank' href='index.php?module=Prospects&action=DetailView&record=${row['id']}'>$value</a></td>\n";
148 148
                 }
149 149
             }
150
-		}
151
-
152
-		if($rowColor == 'evenListRowS1'){
153
-			$rowColor = 'oddListRowS1';
154
-		}else{
155
-			 $rowColor = 'evenListRowS1';
156
-		}
157
-		$form .= "</tr>";
158
-	}
159
-	$form .= "<tr ><td colspan='$cols' class='blackline'></td></tr>";
160
-	if ($action == 'ShowDuplicates') 
161
-	{
162
-		$form .= "</table><br><input title='${app_strings['LBL_SAVE_BUTTON_TITLE']}' accessKey='${app_strings['LBL_SAVE_BUTTON_KEY']}' class='button' onclick=\"this.form.action.value='Save';\" type='submit' name='button' value='  ${app_strings['LBL_SAVE_BUTTON_LABEL']}  '> <input title='${app_strings['LBL_CANCEL_BUTTON_TITLE']}' accessKey='${app_strings['LBL_CANCEL_BUTTON_KEY']}' class='button' onclick=\"this.form.action.value='ListView'; this.form.module.value='Prospects';\" type='submit' name='button' value='  ${app_strings['LBL_CANCEL_BUTTON_LABEL']}  '></form>";
163
-	}
164
-	else 
165
-	{
166
-		$form .= "</table><br><input type='submit' class='button' name='ContinueProspect' value='${mod_strings['LNK_NEW_PROSPECT']}'></form>";
167
-	}
168
-	return $form;
150
+        }
151
+
152
+        if($rowColor == 'evenListRowS1'){
153
+            $rowColor = 'oddListRowS1';
154
+        }else{
155
+                $rowColor = 'evenListRowS1';
156
+        }
157
+        $form .= "</tr>";
158
+    }
159
+    $form .= "<tr ><td colspan='$cols' class='blackline'></td></tr>";
160
+    if ($action == 'ShowDuplicates') 
161
+    {
162
+        $form .= "</table><br><input title='${app_strings['LBL_SAVE_BUTTON_TITLE']}' accessKey='${app_strings['LBL_SAVE_BUTTON_KEY']}' class='button' onclick=\"this.form.action.value='Save';\" type='submit' name='button' value='  ${app_strings['LBL_SAVE_BUTTON_LABEL']}  '> <input title='${app_strings['LBL_CANCEL_BUTTON_TITLE']}' accessKey='${app_strings['LBL_CANCEL_BUTTON_KEY']}' class='button' onclick=\"this.form.action.value='ListView'; this.form.module.value='Prospects';\" type='submit' name='button' value='  ${app_strings['LBL_CANCEL_BUTTON_LABEL']}  '></form>";
163
+    }
164
+    else 
165
+    {
166
+        $form .= "</table><br><input type='submit' class='button' name='ContinueProspect' value='${mod_strings['LNK_NEW_PROSPECT']}'></form>";
167
+    }
168
+    return $form;
169 169
 
170 170
 
171 171
 
@@ -173,31 +173,31 @@  discard block
 block discarded – undo
173 173
 
174 174
 }
175 175
 function getWideFormBody($prefix, $mod='',$formname='',  $prospect = ''){
176
-	if(!ACLController::checkAccess('Prospects', 'edit', true)){
177
-		return '';
178
-	}
176
+    if(!ACLController::checkAccess('Prospects', 'edit', true)){
177
+        return '';
178
+    }
179 179
 	
180
-	if(empty($prospect)){
181
-		$prospect = new Prospect();
182
-	}
183
-	global $mod_strings;
180
+    if(empty($prospect)){
181
+        $prospect = new Prospect();
182
+    }
183
+    global $mod_strings;
184 184
 $temp_strings = $mod_strings;
185 185
 if(!empty($mod)){
186
-	global $current_language;
187
-	$mod_strings = return_module_language($current_language, $mod);
186
+    global $current_language;
187
+    $mod_strings = return_module_language($current_language, $mod);
188 188
 }
189
-		global $app_strings;
190
-		global $current_user;
191
-		global $app_list_strings;
192
-		$primary_address_country_options = get_select_options_with_id($app_list_strings['countries_dom'], $prospect->primary_address_country);
193
-		$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
194
-		$lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
195
-		$lbl_last_name = $mod_strings['LBL_LAST_NAME'];
196
-		$lbl_phone = $mod_strings['LBL_OFFICE_PHONE'];
197
-		$lbl_address =  $mod_strings['LBL_PRIMARY_ADDRESS'];
198
-		$user_id = $current_user->id;
199
-		$lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
200
-		$form = <<<EOQ
189
+        global $app_strings;
190
+        global $current_user;
191
+        global $app_list_strings;
192
+        $primary_address_country_options = get_select_options_with_id($app_list_strings['countries_dom'], $prospect->primary_address_country);
193
+        $lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
194
+        $lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
195
+        $lbl_last_name = $mod_strings['LBL_LAST_NAME'];
196
+        $lbl_phone = $mod_strings['LBL_OFFICE_PHONE'];
197
+        $lbl_address =  $mod_strings['LBL_PRIMARY_ADDRESS'];
198
+        $user_id = $current_user->id;
199
+        $lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
200
+        $form = <<<EOQ
201 201
 		<input type="hidden" name="${prefix}record" value="">
202 202
 		<input type="hidden" name="${prefix}assigned_user_id" value='${user_id}'>
203 203
 		<table border='0' celpadding="0" cellspacing="0" width='100%'>
@@ -304,26 +304,26 @@  discard block
 block discarded – undo
304 304
 }
305 305
 
306 306
 function getFormBody($prefix, $mod='', $formname=''){
307
-	if(!ACLController::checkAccess('Prospects', 'edit', true)){
308
-		return '';
309
-	}
307
+    if(!ACLController::checkAccess('Prospects', 'edit', true)){
308
+        return '';
309
+    }
310 310
 global $mod_strings;
311 311
 $temp_strings = $mod_strings;
312 312
 if(!empty($mod)){
313
-	global $current_language;
314
-	$mod_strings = return_module_language($current_language, $mod);
313
+    global $current_language;
314
+    $mod_strings = return_module_language($current_language, $mod);
315 315
 }
316
-		global $app_strings;
317
-		global $current_user;
318
-		$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
319
-		$lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
320
-		$lbl_last_name = $mod_strings['LBL_LAST_NAME'];
321
-		$lbl_phone = $mod_strings['LBL_PHONE'];
322
-		$user_id = $current_user->id;
323
-		$lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
316
+        global $app_strings;
317
+        global $current_user;
318
+        $lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
319
+        $lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
320
+        $lbl_last_name = $mod_strings['LBL_LAST_NAME'];
321
+        $lbl_phone = $mod_strings['LBL_PHONE'];
322
+        $user_id = $current_user->id;
323
+        $lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
324 324
 if ($formname == 'EmailEditView')
325 325
 {
326
-		$form = <<<EOQ
326
+        $form = <<<EOQ
327 327
 		<input type="hidden" name="${prefix}record" value="">
328 328
 		<input type="hidden" name="${prefix}email2" value="">
329 329
 		<input type="hidden" name="${prefix}phone_work" value="">
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
 }
340 340
 else
341 341
 {
342
-		$form = <<<EOQ
342
+        $form = <<<EOQ
343 343
 		<input type="hidden" name="${prefix}record" value="">
344 344
 		<input type="hidden" name="${prefix}email2" value="">
345 345
 		<input type="hidden" name="${prefix}assigned_user_id" value='${user_id}'>
@@ -369,11 +369,11 @@  discard block
 block discarded – undo
369 369
 }
370 370
 function getForm($prefix, $mod=''){
371 371
 if(!ACLController::checkAccess('Prospects', 'edit', true)){
372
-		return '';
373
-	}
372
+        return '';
373
+    }
374 374
 if(!empty($mod)){
375
-	global $current_language;
376
-	$mod_strings = return_module_language($current_language, $mod);
375
+    global $current_language;
376
+    $mod_strings = return_module_language($current_language, $mod);
377 377
 }else global $mod_strings;
378 378
 global $app_strings;
379 379
 
@@ -405,31 +405,31 @@  discard block
 block discarded – undo
405 405
 
406 406
 
407 407
 function handleSave($prefix,$redirect=true, $useRequired=false){
408
-	global $theme;
408
+    global $theme;
409 409
 	
410 410
 	
411 411
 	
412 412
 	
413
-	require_once('include/formbase.php');
413
+    require_once('include/formbase.php');
414 414
 	
415
-	global $timedate;
415
+    global $timedate;
416 416
 	
417 417
 	
418
-	$focus = new Prospect();
419
-	if($useRequired &&  !checkRequired($prefix, array_keys($focus->required_fields))){
420
-		return null;
421
-	}
422
-	$focus = populateFromPost($prefix, $focus);
423
-	if(!$focus->ACLAccess('Save')){
424
-		return null;
425
-	}
426
-	if (!isset($GLOBALS['check_notify'])) $GLOBALS['check_notify']=false;
418
+    $focus = new Prospect();
419
+    if($useRequired &&  !checkRequired($prefix, array_keys($focus->required_fields))){
420
+        return null;
421
+    }
422
+    $focus = populateFromPost($prefix, $focus);
423
+    if(!$focus->ACLAccess('Save')){
424
+        return null;
425
+    }
426
+    if (!isset($GLOBALS['check_notify'])) $GLOBALS['check_notify']=false;
427 427
 	
428
-	if (!isset($_POST[$prefix.'email_opt_out'])) $focus->email_opt_out = 0;
429
-	if (!isset($_POST[$prefix.'do_not_call'])) $focus->do_not_call = 0;
428
+    if (!isset($_POST[$prefix.'email_opt_out'])) $focus->email_opt_out = 0;
429
+    if (!isset($_POST[$prefix.'do_not_call'])) $focus->do_not_call = 0;
430 430
 	
431
-	if (empty($_POST['record']) && empty($_POST['dup_checked'])) {
432
-		/*
431
+    if (empty($_POST['record']) && empty($_POST['dup_checked'])) {
432
+        /*
433 433
 		// we don't check dupes on Prospects - this is the dirtiest data in the system
434 434
 		//$duplicateProspects = $this->checkForDuplicates($prefix);
435 435
 		if(isset($duplicateProspects)){
@@ -473,13 +473,13 @@  discard block
 block discarded – undo
473 473
 			header("Location: index.php?$get");
474 474
 			return null;
475 475
 		}*/
476
-	}
477
-	global $current_user;
476
+    }
477
+    global $current_user;
478 478
 
479
-	$focus->save($GLOBALS['check_notify']);
480
-	$return_id = $focus->id;
479
+    $focus->save($GLOBALS['check_notify']);
480
+    $return_id = $focus->id;
481 481
     
482
-	$GLOBALS['log']->debug("Saved record with id of ".$return_id);
482
+    $GLOBALS['log']->debug("Saved record with id of ".$return_id);
483 483
     if(isset($_POST['popup']) && $_POST['popup'] == 'true') {
484 484
         $get = '&module=';
485 485
         if(!empty($_POST['return_module'])) $get .= $_POST['return_module'];
@@ -497,12 +497,12 @@  discard block
 block discarded – undo
497 497
         header("Location: index.php?$get");
498 498
         return;
499 499
     }
500
-	if($redirect){
501
-	    require_once('include/formbase.php');
502
-	    handleRedirect($return_id, 'Prospects');
503
-	}else{
504
-		return $focus;
505
-	}
500
+    if($redirect){
501
+        require_once('include/formbase.php');
502
+        handleRedirect($return_id, 'Prospects');
503
+    }else{
504
+        return $focus;
505
+    }
506 506
 }
507 507
 
508 508
 }
Please login to merge, or discard this patch.
Spacing   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
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.
@@ -46,71 +46,71 @@  discard block
 block discarded – undo
46 46
  * Contributor(s): ______________________________________..
47 47
  ********************************************************************************/
48 48
 
49
-class ProspectFormBase  {
49
+class ProspectFormBase {
50 50
 
51
-function checkForDuplicates($prefix){
51
+function checkForDuplicates($prefix) {
52 52
 	global $local_log;
53 53
 	require_once('include/formbase.php');
54 54
 	
55 55
 	$focus = new Prospect();
56
-	if(!checkRequired($prefix, array_keys($focus->required_fields))){
56
+	if (!checkRequired($prefix, array_keys($focus->required_fields))) {
57 57
 		return null;
58 58
 	}
59 59
 	$query = '';
60 60
 	$baseQuery = 'select id,first_name, last_name, title, email1, email2  from prospects where deleted!=1 and (';
61
-	if(!empty($_POST[$prefix.'first_name']) && !empty($_POST[$prefix.'last_name'])){
62
-		$query = $baseQuery ."  (first_name like '". $_POST[$prefix.'first_name'] . "%' and last_name = '". $_POST[$prefix.'last_name'] ."')";
63
-	}else{
64
-			$query = $baseQuery ."  last_name = '". $_POST[$prefix.'last_name'] ."'";
61
+	if (!empty($_POST[$prefix.'first_name']) && !empty($_POST[$prefix.'last_name'])) {
62
+		$query = $baseQuery."  (first_name like '".$_POST[$prefix.'first_name']."%' and last_name = '".$_POST[$prefix.'last_name']."')";
63
+	} else {
64
+			$query = $baseQuery."  last_name = '".$_POST[$prefix.'last_name']."'";
65 65
 	}
66
-	if(!empty($_POST[$prefix.'email1'])){
67
-		if(empty($query)){
68
-		$query = $baseQuery. "  email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
69
-		}else {
70
-			$query .= "or email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
66
+	if (!empty($_POST[$prefix.'email1'])) {
67
+		if (empty($query)) {
68
+		$query = $baseQuery."  email1='".$_POST[$prefix.'email1']."' or email2 = '".$_POST[$prefix.'email1']."'";
69
+		} else {
70
+			$query .= "or email1='".$_POST[$prefix.'email1']."' or email2 = '".$_POST[$prefix.'email1']."'";
71 71
 		}
72 72
 	}
73
-	if(!empty($_POST[$prefix.'email2'])){
74
-		if(empty($query))	{
75
-			$query = $baseQuery. "  email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
76
-		}else{
77
-			$query .= "or email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
73
+	if (!empty($_POST[$prefix.'email2'])) {
74
+		if (empty($query)) {
75
+			$query = $baseQuery."  email1='".$_POST[$prefix.'email2']."' or email2 = '".$_POST[$prefix.'email2']."'";
76
+		} else {
77
+			$query .= "or email1='".$_POST[$prefix.'email2']."' or email2 = '".$_POST[$prefix.'email2']."'";
78 78
 		}
79 79
 
80 80
 	}
81 81
 
82
-	if(!empty($query)){
82
+	if (!empty($query)) {
83 83
 		$rows = array();
84 84
 		
85 85
 		$db = DBManagerFactory::getInstance();
86 86
 		$result = $db->query($query.');');
87
-        while($row = $db->fetchByAssoc($result)) {
87
+        while ($row = $db->fetchByAssoc($result)) {
88 88
             $rows[] = $row;
89 89
 		}
90
-		if(count($rows) > 0) return $rows;
90
+		if (count($rows) > 0) return $rows;
91 91
 		}
92 92
 	return null;
93 93
 }
94 94
 
95 95
 
96
-function buildTableForm($rows, $mod=''){
96
+function buildTableForm($rows, $mod = '') {
97 97
 	global $action;
98
-	if(!empty($mod)){
98
+	if (!empty($mod)) {
99 99
 	global $current_language;
100 100
 	$mod_strings = return_module_language($current_language, $mod);
101
-	}else global $mod_strings;
101
+	} else global $mod_strings;
102 102
 	global $app_strings;
103 103
 	$cols = sizeof($rows[0]) * 2 + 1;
104 104
 	if ($action != 'ShowDuplicates') 
105 105
 	{
106
-		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_DUPLICATE']. '</td></tr><tr><td height="20"></td></tr></table>';
106
+		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_DUPLICATE'].'</td></tr><tr><td height="20"></td></tr></table>';
107 107
 		$form .= "<form action='index.php' method='post' name='dupProspects'><input type='hidden' name='selectedProspect' value=''>";
108 108
 	}
109 109
 	else 
110 110
 	{
111
-		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_SHOW_DUPLICATES']. '</td></tr><tr><td height="20"></td></tr></table>';
111
+		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_SHOW_DUPLICATES'].'</td></tr><tr><td height="20"></td></tr></table>';
112 112
 	}
113
-	$form .= get_form_header($mod_strings['LBL_DUPLICATE'],"", '');
113
+	$form .= get_form_header($mod_strings['LBL_DUPLICATE'], "", '');
114 114
 	$form .= "<table width='100%' cellpadding='0' cellspacing='0'>	<tr >	";
115 115
 	if ($action != 'ShowDuplicates') 
116 116
 	{
@@ -120,16 +120,16 @@  discard block
 block discarded – undo
120 120
 	require_once('include/formbase.php');
121 121
 	$form .= getPostToForm();
122 122
 
123
-	if(isset($rows[0])){
124
-		foreach ($rows[0] as $key=>$value){
125
-			if($key != 'id'){
126
-					$form .= "<td scope='col' >". $mod_strings[$mod_strings['db_'.$key]]. "</td>";
123
+	if (isset($rows[0])) {
124
+		foreach ($rows[0] as $key=>$value) {
125
+			if ($key != 'id') {
126
+					$form .= "<td scope='col' >".$mod_strings[$mod_strings['db_'.$key]]."</td>";
127 127
 			}
128 128
 		}
129 129
 		$form .= "</tr>";
130 130
 	}
131 131
 	$rowColor = 'oddListRowS1';
132
-	foreach($rows as $row){
132
+	foreach ($rows as $row) {
133 133
 
134 134
 		$form .= "<tr class='$rowColor'>";
135 135
 		if ($action != 'ShowDuplicates') 
@@ -138,8 +138,8 @@  discard block
 block discarded – undo
138 138
 		$wasSet = false;
139 139
 
140 140
 		foreach ($row as $key=>$value) {
141
-            if($key != 'id') {
142
-                if(!$wasSet) {
141
+            if ($key != 'id') {
142
+                if (!$wasSet) {
143 143
                     $form .= "<td scope='row' ><a target='_blank' href='index.php?module=Prospects&action=DetailView&record=${row['id']}'>$value</a></td>\n";
144 144
                     $wasSet = true;
145 145
                 }
@@ -149,9 +149,9 @@  discard block
 block discarded – undo
149 149
             }
150 150
 		}
151 151
 
152
-		if($rowColor == 'evenListRowS1'){
152
+		if ($rowColor == 'evenListRowS1') {
153 153
 			$rowColor = 'oddListRowS1';
154
-		}else{
154
+		} else {
155 155
 			 $rowColor = 'evenListRowS1';
156 156
 		}
157 157
 		$form .= "</tr>";
@@ -172,17 +172,17 @@  discard block
 block discarded – undo
172 172
 
173 173
 
174 174
 }
175
-function getWideFormBody($prefix, $mod='',$formname='',  $prospect = ''){
176
-	if(!ACLController::checkAccess('Prospects', 'edit', true)){
175
+function getWideFormBody($prefix, $mod = '', $formname = '', $prospect = '') {
176
+	if (!ACLController::checkAccess('Prospects', 'edit', true)) {
177 177
 		return '';
178 178
 	}
179 179
 	
180
-	if(empty($prospect)){
180
+	if (empty($prospect)) {
181 181
 		$prospect = new Prospect();
182 182
 	}
183 183
 	global $mod_strings;
184 184
 $temp_strings = $mod_strings;
185
-if(!empty($mod)){
185
+if (!empty($mod)) {
186 186
 	global $current_language;
187 187
 	$mod_strings = return_module_language($current_language, $mod);
188 188
 }
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 		$lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
195 195
 		$lbl_last_name = $mod_strings['LBL_LAST_NAME'];
196 196
 		$lbl_phone = $mod_strings['LBL_OFFICE_PHONE'];
197
-		$lbl_address =  $mod_strings['LBL_PRIMARY_ADDRESS'];
197
+		$lbl_address = $mod_strings['LBL_PRIMARY_ADDRESS'];
198 198
 		$user_id = $current_user->id;
199 199
 		$lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
200 200
 		$form = <<<EOQ
@@ -295,21 +295,21 @@  discard block
 block discarded – undo
295 295
 $javascript = new javascript();
296 296
 $javascript->setFormName($formname);
297 297
 $javascript->setSugarBean(new Prospect());
298
-$javascript->addField('email1','false',$prefix);
299
-$javascript->addField('email2','false',$prefix);
298
+$javascript->addField('email1', 'false', $prefix);
299
+$javascript->addField('email2', 'false', $prefix);
300 300
 $javascript->addRequiredFields($prefix);
301
-$form .=$javascript->getScript();
301
+$form .= $javascript->getScript();
302 302
 $mod_strings = $temp_strings;
303 303
 return $form;
304 304
 }
305 305
 
306
-function getFormBody($prefix, $mod='', $formname=''){
307
-	if(!ACLController::checkAccess('Prospects', 'edit', true)){
306
+function getFormBody($prefix, $mod = '', $formname = '') {
307
+	if (!ACLController::checkAccess('Prospects', 'edit', true)) {
308 308
 		return '';
309 309
 	}
310 310
 global $mod_strings;
311 311
 $temp_strings = $mod_strings;
312
-if(!empty($mod)){
312
+if (!empty($mod)) {
313 313
 	global $current_language;
314 314
 	$mod_strings = return_module_language($current_language, $mod);
315 315
 }
@@ -359,22 +359,22 @@  discard block
 block discarded – undo
359 359
 $javascript = new javascript();
360 360
 $javascript->setFormName($formname);
361 361
 $javascript->setSugarBean(new Prospect());
362
-$javascript->addField('email1','false',$prefix);
362
+$javascript->addField('email1', 'false', $prefix);
363 363
 $javascript->addRequiredFields($prefix);
364 364
 
365
-$form .=$javascript->getScript();
365
+$form .= $javascript->getScript();
366 366
 $mod_strings = $temp_strings;
367 367
 return $form;
368 368
 
369 369
 }
370
-function getForm($prefix, $mod=''){
371
-if(!ACLController::checkAccess('Prospects', 'edit', true)){
370
+function getForm($prefix, $mod = '') {
371
+if (!ACLController::checkAccess('Prospects', 'edit', true)) {
372 372
 		return '';
373 373
 	}
374
-if(!empty($mod)){
374
+if (!empty($mod)) {
375 375
 	global $current_language;
376 376
 	$mod_strings = return_module_language($current_language, $mod);
377
-}else global $mod_strings;
377
+} else global $mod_strings;
378 378
 global $app_strings;
379 379
 
380 380
 $lbl_save_button_title = $app_strings['LBL_SAVE_BUTTON_TITLE'];
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 			<input type="hidden" name="${prefix}module" value="Prospects">
390 390
 			<input type="hidden" name="${prefix}action" value="Save">
391 391
 EOQ;
392
-$the_form .= $this->getFormBody($prefix,'Prospects', "${prefix}ProspectSave");
392
+$the_form .= $this->getFormBody($prefix, 'Prospects', "${prefix}ProspectSave");
393 393
 $the_form .= <<<EOQ
394 394
 		<input title="$lbl_save_button_title" accessKey="$lbl_save_button_key" class="button" type="submit" name="${prefix}button" value="  $lbl_save_button_label  " >
395 395
 		</form>
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
 }
405 405
 
406 406
 
407
-function handleSave($prefix,$redirect=true, $useRequired=false){
407
+function handleSave($prefix, $redirect = true, $useRequired = false) {
408 408
 	global $theme;
409 409
 	
410 410
 	
@@ -416,14 +416,14 @@  discard block
 block discarded – undo
416 416
 	
417 417
 	
418 418
 	$focus = new Prospect();
419
-	if($useRequired &&  !checkRequired($prefix, array_keys($focus->required_fields))){
419
+	if ($useRequired && !checkRequired($prefix, array_keys($focus->required_fields))) {
420 420
 		return null;
421 421
 	}
422 422
 	$focus = populateFromPost($prefix, $focus);
423
-	if(!$focus->ACLAccess('Save')){
423
+	if (!$focus->ACLAccess('Save')) {
424 424
 		return null;
425 425
 	}
426
-	if (!isset($GLOBALS['check_notify'])) $GLOBALS['check_notify']=false;
426
+	if (!isset($GLOBALS['check_notify'])) $GLOBALS['check_notify'] = false;
427 427
 	
428 428
 	if (!isset($_POST[$prefix.'email_opt_out'])) $focus->email_opt_out = 0;
429 429
 	if (!isset($_POST[$prefix.'do_not_call'])) $focus->do_not_call = 0;
@@ -480,27 +480,27 @@  discard block
 block discarded – undo
480 480
 	$return_id = $focus->id;
481 481
     
482 482
 	$GLOBALS['log']->debug("Saved record with id of ".$return_id);
483
-    if(isset($_POST['popup']) && $_POST['popup'] == 'true') {
483
+    if (isset($_POST['popup']) && $_POST['popup'] == 'true') {
484 484
         $get = '&module=';
485
-        if(!empty($_POST['return_module'])) $get .= $_POST['return_module'];
485
+        if (!empty($_POST['return_module'])) $get .= $_POST['return_module'];
486 486
         else $get .= 'Prospects';
487 487
         $get .= '&action=';
488
-        if(!empty($_POST['return_action'])) $get .= $_POST['return_action'];
488
+        if (!empty($_POST['return_action'])) $get .= $_POST['return_action'];
489 489
         else $get .= 'Popup';
490
-        if(!empty($_POST['return_id'])) $get .= '&return_id='.$_POST['return_id'];
491
-        if(!empty($_POST['popup'])) $get .= '&popup='.$_POST['popup'];
492
-        if(!empty($_POST['create'])) $get .= '&create='.$_POST['create'];
493
-        if(!empty($_POST['to_pdf'])) $get .= '&to_pdf='.$_POST['to_pdf'];
494
-        $get .= '&first_name=' . $focus->first_name;
495
-        $get .= '&last_name=' . $focus->last_name;
490
+        if (!empty($_POST['return_id'])) $get .= '&return_id='.$_POST['return_id'];
491
+        if (!empty($_POST['popup'])) $get .= '&popup='.$_POST['popup'];
492
+        if (!empty($_POST['create'])) $get .= '&create='.$_POST['create'];
493
+        if (!empty($_POST['to_pdf'])) $get .= '&to_pdf='.$_POST['to_pdf'];
494
+        $get .= '&first_name='.$focus->first_name;
495
+        $get .= '&last_name='.$focus->last_name;
496 496
         $get .= '&query=true';
497 497
         header("Location: index.php?$get");
498 498
         return;
499 499
     }
500
-	if($redirect){
500
+	if ($redirect) {
501 501
 	    require_once('include/formbase.php');
502 502
 	    handleRedirect($return_id, 'Prospects');
503
-	}else{
503
+	} else {
504 504
 		return $focus;
505 505
 	}
506 506
 }
Please login to merge, or discard this patch.
Braces   +53 added lines, -26 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -60,20 +62,20 @@  discard block
 block discarded – undo
60 62
 	$baseQuery = 'select id,first_name, last_name, title, email1, email2  from prospects where deleted!=1 and (';
61 63
 	if(!empty($_POST[$prefix.'first_name']) && !empty($_POST[$prefix.'last_name'])){
62 64
 		$query = $baseQuery ."  (first_name like '". $_POST[$prefix.'first_name'] . "%' and last_name = '". $_POST[$prefix.'last_name'] ."')";
63
-	}else{
65
+	} else{
64 66
 			$query = $baseQuery ."  last_name = '". $_POST[$prefix.'last_name'] ."'";
65 67
 	}
66 68
 	if(!empty($_POST[$prefix.'email1'])){
67 69
 		if(empty($query)){
68 70
 		$query = $baseQuery. "  email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
69
-		}else {
71
+		} else {
70 72
 			$query .= "or email1='". $_POST[$prefix.'email1'] . "' or email2 = '". $_POST[$prefix.'email1'] ."'";
71 73
 		}
72 74
 	}
73 75
 	if(!empty($_POST[$prefix.'email2'])){
74 76
 		if(empty($query))	{
75 77
 			$query = $baseQuery. "  email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
76
-		}else{
78
+		} else{
77 79
 			$query .= "or email1='". $_POST[$prefix.'email2'] . "' or email2 = '". $_POST[$prefix.'email2'] ."'";
78 80
 		}
79 81
 
@@ -87,7 +89,9 @@  discard block
 block discarded – undo
87 89
         while($row = $db->fetchByAssoc($result)) {
88 90
             $rows[] = $row;
89 91
 		}
90
-		if(count($rows) > 0) return $rows;
92
+		if(count($rows) > 0) {
93
+		    return $rows;
94
+		}
91 95
 		}
92 96
 	return null;
93 97
 }
@@ -98,15 +102,16 @@  discard block
 block discarded – undo
98 102
 	if(!empty($mod)){
99 103
 	global $current_language;
100 104
 	$mod_strings = return_module_language($current_language, $mod);
101
-	}else global $mod_strings;
105
+	} else {
106
+	    global $mod_strings;
107
+	}
102 108
 	global $app_strings;
103 109
 	$cols = sizeof($rows[0]) * 2 + 1;
104 110
 	if ($action != 'ShowDuplicates') 
105 111
 	{
106 112
 		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_DUPLICATE']. '</td></tr><tr><td height="20"></td></tr></table>';
107 113
 		$form .= "<form action='index.php' method='post' name='dupProspects'><input type='hidden' name='selectedProspect' value=''>";
108
-	}
109
-	else 
114
+	} else 
110 115
 	{
111 116
 		$form = '<table width="100%"><tr><td>'.$mod_strings['MSG_SHOW_DUPLICATES']. '</td></tr><tr><td height="20"></td></tr></table>';
112 117
 	}
@@ -132,8 +137,9 @@  discard block
 block discarded – undo
132 137
 	foreach($rows as $row){
133 138
 
134 139
 		$form .= "<tr class='$rowColor'>";
135
-		if ($action != 'ShowDuplicates') 
136
-			$form .= "<td width='1%' nowrap='nowrap' ><a href='#' onClick=\"document.dupProspects.selectedProspect.value='${row['id']}';document.dupProspects.submit() \">[${app_strings['LBL_SELECT_BUTTON_LABEL']}]</a>&nbsp;&nbsp;</td>\n";
140
+		if ($action != 'ShowDuplicates') {
141
+					$form .= "<td width='1%' nowrap='nowrap' ><a href='#' onClick=\"document.dupProspects.selectedProspect.value='${row['id']}';document.dupProspects.submit() \">[${app_strings['LBL_SELECT_BUTTON_LABEL']}]</a>&nbsp;&nbsp;</td>\n";
142
+		}
137 143
 		
138 144
 		$wasSet = false;
139 145
 
@@ -142,8 +148,7 @@  discard block
 block discarded – undo
142 148
                 if(!$wasSet) {
143 149
                     $form .= "<td scope='row' ><a target='_blank' href='index.php?module=Prospects&action=DetailView&record=${row['id']}'>$value</a></td>\n";
144 150
                     $wasSet = true;
145
-                }
146
-                else {
151
+                } else {
147 152
                     $form .= "<td><a target='_blank' href='index.php?module=Prospects&action=DetailView&record=${row['id']}'>$value</a></td>\n";
148 153
                 }
149 154
             }
@@ -151,7 +156,7 @@  discard block
 block discarded – undo
151 156
 
152 157
 		if($rowColor == 'evenListRowS1'){
153 158
 			$rowColor = 'oddListRowS1';
154
-		}else{
159
+		} else{
155 160
 			 $rowColor = 'evenListRowS1';
156 161
 		}
157 162
 		$form .= "</tr>";
@@ -374,7 +379,9 @@  discard block
 block discarded – undo
374 379
 if(!empty($mod)){
375 380
 	global $current_language;
376 381
 	$mod_strings = return_module_language($current_language, $mod);
377
-}else global $mod_strings;
382
+} else {
383
+    global $mod_strings;
384
+}
378 385
 global $app_strings;
379 386
 
380 387
 $lbl_save_button_title = $app_strings['LBL_SAVE_BUTTON_TITLE'];
@@ -423,10 +430,16 @@  discard block
 block discarded – undo
423 430
 	if(!$focus->ACLAccess('Save')){
424 431
 		return null;
425 432
 	}
426
-	if (!isset($GLOBALS['check_notify'])) $GLOBALS['check_notify']=false;
433
+	if (!isset($GLOBALS['check_notify'])) {
434
+	    $GLOBALS['check_notify']=false;
435
+	}
427 436
 	
428
-	if (!isset($_POST[$prefix.'email_opt_out'])) $focus->email_opt_out = 0;
429
-	if (!isset($_POST[$prefix.'do_not_call'])) $focus->do_not_call = 0;
437
+	if (!isset($_POST[$prefix.'email_opt_out'])) {
438
+	    $focus->email_opt_out = 0;
439
+	}
440
+	if (!isset($_POST[$prefix.'do_not_call'])) {
441
+	    $focus->do_not_call = 0;
442
+	}
430 443
 	
431 444
 	if (empty($_POST['record']) && empty($_POST['dup_checked'])) {
432 445
 		/*
@@ -482,15 +495,29 @@  discard block
 block discarded – undo
482 495
 	$GLOBALS['log']->debug("Saved record with id of ".$return_id);
483 496
     if(isset($_POST['popup']) && $_POST['popup'] == 'true') {
484 497
         $get = '&module=';
485
-        if(!empty($_POST['return_module'])) $get .= $_POST['return_module'];
486
-        else $get .= 'Prospects';
498
+        if(!empty($_POST['return_module'])) {
499
+            $get .= $_POST['return_module'];
500
+        } else {
501
+            $get .= 'Prospects';
502
+        }
487 503
         $get .= '&action=';
488
-        if(!empty($_POST['return_action'])) $get .= $_POST['return_action'];
489
-        else $get .= 'Popup';
490
-        if(!empty($_POST['return_id'])) $get .= '&return_id='.$_POST['return_id'];
491
-        if(!empty($_POST['popup'])) $get .= '&popup='.$_POST['popup'];
492
-        if(!empty($_POST['create'])) $get .= '&create='.$_POST['create'];
493
-        if(!empty($_POST['to_pdf'])) $get .= '&to_pdf='.$_POST['to_pdf'];
504
+        if(!empty($_POST['return_action'])) {
505
+            $get .= $_POST['return_action'];
506
+        } else {
507
+            $get .= 'Popup';
508
+        }
509
+        if(!empty($_POST['return_id'])) {
510
+            $get .= '&return_id='.$_POST['return_id'];
511
+        }
512
+        if(!empty($_POST['popup'])) {
513
+            $get .= '&popup='.$_POST['popup'];
514
+        }
515
+        if(!empty($_POST['create'])) {
516
+            $get .= '&create='.$_POST['create'];
517
+        }
518
+        if(!empty($_POST['to_pdf'])) {
519
+            $get .= '&to_pdf='.$_POST['to_pdf'];
520
+        }
494 521
         $get .= '&first_name=' . $focus->first_name;
495 522
         $get .= '&last_name=' . $focus->last_name;
496 523
         $get .= '&query=true';
@@ -500,7 +527,7 @@  discard block
 block discarded – undo
500 527
 	if($redirect){
501 528
 	    require_once('include/formbase.php');
502 529
 	    handleRedirect($return_id, 'Prospects');
503
-	}else{
530
+	} else{
504 531
 		return $focus;
505 532
 	}
506 533
 }
Please login to merge, or discard this patch.