@@ -23,7 +23,7 @@ |
||
23 | 23 | include dirname(__DIR__) . '/config-default.inc.php'; |
24 | 24 | } |
25 | 25 | |
26 | -if (! defined('MIDCOM_STATIC_URL')) { |
|
26 | +if (!defined('MIDCOM_STATIC_URL')) { |
|
27 | 27 | define('MIDCOM_STATIC_URL', '/midcom-static'); |
28 | 28 | } |
29 | 29 |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | $this->_add_visibility_checks(); |
107 | 107 | |
108 | - if ( empty($this->_limit) |
|
108 | + if (empty($this->_limit) |
|
109 | 109 | && empty($this->_offset)) { |
110 | 110 | // No point to do windowing |
111 | 111 | $newresult = $this->_execute_and_check_privileges(); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | } |
151 | 151 | $this->_query->set_limit($window_size); |
152 | 152 | |
153 | - while ( ($resultset = $this->_execute_and_check_privileges()) |
|
153 | + while (($resultset = $this->_execute_and_check_privileges()) |
|
154 | 154 | || $this->denied > $denied) { |
155 | 155 | $size = count($resultset); |
156 | 156 | $total_size = $size + ($this->denied - $denied); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | ]); |
55 | 55 | } |
56 | 56 | |
57 | - if ( midcom::get()->config->get('midcom_services_rcs_enable') |
|
57 | + if (midcom::get()->config->get('midcom_services_rcs_enable') |
|
58 | 58 | && $object->can_do('midgard:update') |
59 | 59 | && $object->_use_rcs) { |
60 | 60 | $buttons[] = [ |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | $icon = 'stock-icons/16x16/page-' . $icontype . '.png'; |
87 | - if ( !midcom::get()->config->get('show_hidden_objects') |
|
87 | + if (!midcom::get()->config->get('show_hidden_objects') |
|
88 | 88 | && !$object->metadata->is_visible()) { |
89 | 89 | // Take scheduling into account |
90 | 90 | $icon = 'stock-icons/16x16/page-' . $icontype . '-notpublished.png'; |
@@ -72,7 +72,7 @@ |
||
72 | 72 | |
73 | 73 | $this->_group = new org_openpsa_contacts_group_dba(); |
74 | 74 | |
75 | - if ( $this->_type == 'organization' |
|
75 | + if ($this->_type == 'organization' |
|
76 | 76 | && $this->_parent_group) { |
77 | 77 | $this->_group->owner = $this->_parent_group->id; |
78 | 78 | } else { |
@@ -50,6 +50,6 @@ |
||
50 | 50 | $indexer = new org_openpsa_documents_midcom_indexer($this->_topic); |
51 | 51 | $indexer->index($controller->get_datamanager()); |
52 | 52 | |
53 | - return $controller->get_datamanager()->get_storage()->get_value()->name. "/"; |
|
53 | + return $controller->get_datamanager()->get_storage()->get_value()->name . "/"; |
|
54 | 54 | } |
55 | 55 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | </td> |
23 | 23 | <td class="revisor"> |
24 | 24 | <?php |
25 | - if ( $history['user'] |
|
25 | + if ($history['user'] |
|
26 | 26 | && $user = midcom::get()->auth->get_user($history['user'])) { |
27 | 27 | $person_label = org_openpsa_widgets_contact::get($user->guid)->show_inline(); |
28 | 28 | echo " {$person_label}\n"; |
@@ -16,8 +16,8 @@ |
||
16 | 16 | $view['author'], |
17 | 17 | $formatter->datetime($created)); |
18 | 18 | |
19 | -if ( midcom::get()->auth->admin |
|
20 | - || ( midcom::get()->auth->user |
|
19 | +if (midcom::get()->auth->admin |
|
20 | + || (midcom::get()->auth->user |
|
21 | 21 | && $comment->can_do('midgard:delete'))) { |
22 | 22 | $creator = $comment->metadata->creator; |
23 | 23 | $created = $comment->metadata->created; |
@@ -1,1 +1,1 @@ |
||
1 | -<p><?php $data['l10n']->show('no news found.');?></p> |
|
2 | 1 | \ No newline at end of file |
2 | +<p><?php $data['l10n']->show('no news found.'); ?></p> |
|
3 | 3 | \ No newline at end of file |
@@ -49,7 +49,7 @@ |
||
49 | 49 | <textarea id="working_description" name="description" rows="3" cols="40">&(workingon.description);</textarea> |
50 | 50 | <div id="working_invoiceable_div" > |
51 | 51 | <label for="working_invoiceable"> |
52 | - <input type="checkbox" name="working_invoiceable" <?php echo $checked;?> id="working_invoiceable"/><?php echo $data['l10n']->get('invoiceable'); ?> |
|
52 | + <input type="checkbox" name="working_invoiceable" <?php echo $checked; ?> id="working_invoiceable"/><?php echo $data['l10n']->get('invoiceable'); ?> |
|
53 | 53 | </label> |
54 | 54 | </div> |
55 | 55 |