Completed
Pull Request — master (#194)
by
unknown
15:06
created
lib/net/nemein/wiki/handler/edit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         foreach ($this->schemadb->all() as $schema) {
53 53
             $schema->set('operations', $operations);
54 54
             if ($schema->has_field('title')) {
55
-                $field =& $schema->get_field('title');
55
+                $field = & $schema->get_field('title');
56 56
                 $field['hidden'] = true;
57 57
             }
58 58
         }
Please login to merge, or discard this patch.
lib/org/openpsa/user/handler/group/privileges.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
         // Get the calendar root event
24 24
         if ($root_event = org_openpsa_calendar_interface::find_root_event()) {
25
-            $field =& $schemadb->get('default')->get_field('calendar');
25
+            $field = & $schemadb->get('default')->get_field('calendar');
26 26
             $field['type_config']['privilege_object'] = $root_event;
27 27
             $field['type_config']['assignee'] = 'group:' . $group->guid;
28 28
         }
Please login to merge, or discard this patch.
lib/org/openpsa/user/handler/person/privileges.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
         // Get the calendar root event
24 24
         if ($root_event = org_openpsa_calendar_interface::find_root_event()) {
25
-            $field =& $schemadb->get('default')->get_field('calendar');
25
+            $field = & $schemadb->get('default')->get_field('calendar');
26 26
             $field['type_config']['privilege_object'] = $root_event;
27 27
             $field['type_config']['assignee'] = 'user:' . $person->guid;
28 28
         }
Please login to merge, or discard this patch.
lib/midgard/admin/asgard/handler/component/configuration.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
                 $fields[$key] = $this->_detect_schema($key, $value);
116 116
             }
117 117
 
118
-            if (   !isset($this->_request_data['config']->_local[$key])
118
+            if (!isset($this->_request_data['config']->_local[$key])
119 119
                 || $this->_request_data['config']->_local[$key] == $this->_request_data['config']->_global[$key]) {
120 120
                 // No local configuration setting, note to user that this is the global value
121 121
                 $fields[$key]['title'] = $schema->get_l10n()->get($fields[$key]['title']);
122
-                $fields[$key]['title'] .= " <span class=\"global\">(" . $this->_l10n->get('global value') .")</span>";
122
+                $fields[$key]['title'] .= " <span class=\"global\">(" . $this->_l10n->get('global value') . ")</span>";
123 123
             }
124 124
         }
125 125
 
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
     private function _save_topic(midcom_db_topic $topic, $config)
288 288
     {
289 289
         foreach ($this->_request_data['config']->_global as $global_key => $global_value) {
290
-            if (   isset($config[$global_key])
290
+            if (isset($config[$global_key])
291 291
                 && $config[$global_key] != $global_value) {
292 292
                 continue;
293 293
                 // Skip the ones we will set next
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         }
301 301
 
302 302
         foreach ($config as $key => $value) {
303
-            if (   is_array($value)
303
+            if (is_array($value)
304 304
                 || is_object($value)) {
305 305
                 /**
306 306
                  * See http://trac.midgard-project.org/ticket/1442
Please login to merge, or discard this patch.
src/midcom/datamanager/template/csv.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     public function form_widget_simple(FormView $view, array $data)
19 19
     {
20
-        if (   !empty($data['value'])
20
+        if (!empty($data['value'])
21 21
             || is_numeric($data['value'])) {
22 22
             return $data['value'];
23 23
         }
Please login to merge, or discard this patch.
lib/org/openpsa/user/handler/lostpassword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             case 'save':
45 45
                 $this->_reset_password($data['controller']->get_form_values());
46 46
                 $data['processing_msg'] = $this->_l10n->get('password reset, mail sent.');
47
-                $data['processing_msg_raw']= 'password reset, mail sent.';
47
+                $data['processing_msg_raw'] = 'password reset, mail sent.';
48 48
                 $this->_success = true;
49 49
                 break;
50 50
 
Please login to merge, or discard this patch.
lib/org/openpsa/user/handler/group/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     private function load_datamanager()
31 31
     {
32 32
         $dm = datamanager::from_schemadb($this->_config->get('schemadb_group'));
33
-        $persons =& $dm->get_schema('default')->get_field('persons');
33
+        $persons = & $dm->get_schema('default')->get_field('persons');
34 34
         $persons['hidden'] = true;
35 35
         return $dm->set_storage($this->_group);
36 36
     }
Please login to merge, or discard this patch.
lib/midcom/admin/folder/handler/edit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
         foreach ($schemadb->all() as $schema) {
55 55
             if ($schema->has_field('name')) {
56
-                $field =& $schema->get_field('name');
56
+                $field = & $schema->get_field('name');
57 57
                 $field['required'] = ($this->_handler_id === 'edit');
58 58
             }
59 59
         }
Please login to merge, or discard this patch.
lib/net/nehmer/blog/handler/view.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             ]);
45 45
         }
46 46
 
47
-        if (   $this->_article->topic === $this->_topic->id
47
+        if ($this->_article->topic === $this->_topic->id
48 48
             && $this->_article->can_do('midgard:delete')) {
49 49
             $delete = $this->get_workflow('delete', ['object' => $this->_article]);
50 50
             $buttons[] = $delete->get_button("delete/{$this->_article->guid}/");
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         if ($this->_config->get('comments_enable')) {
97 97
             if ($comments_node = $this->_seek_comments()) {
98 98
                 $this->_request_data['comments_url'] = $comments_node[MIDCOM_NAV_RELATIVEURL] . "comment/{$this->_article->guid}";
99
-                if (   $this->_topic->can_do('midgard:update')
99
+                if ($this->_topic->can_do('midgard:update')
100 100
                     && $this->_topic->can_do('net.nehmer.comments:moderation')) {
101 101
                     net_nehmer_comments_viewer::add_head_elements();
102 102
                 }
Please login to merge, or discard this patch.