Completed
Branch 7.x-3.x (9d48fc)
by Devin
04:36
created
commons_trusted_contacts.features.field_instance.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * commons_trusted_contacts.features.field_instance.inc
5
- */
3
+   * @file
4
+   * commons_trusted_contacts.features.field_instance.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_field_default_field_instances().
Please login to merge, or discard this patch.
modules/commons/commons_notices/commons_notices.features.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * commons_notices.features.inc
5
- */
3
+   * @file
4
+   * commons_notices.features.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_ctools_plugin_api().
Please login to merge, or discard this patch.
modules/commons/commons_notices/commons_notices.strongarm.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * commons_notices.strongarm.inc
5
- */
3
+   * @file
4
+   * commons_notices.strongarm.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_strongarm().
Please login to merge, or discard this patch.
modules/commons/commons_notices/commons_notices.features.field_instance.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * commons_notices.features.field_instance.inc
5
- */
3
+   * @file
4
+   * commons_notices.features.field_instance.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_field_default_field_instances().
Please login to merge, or discard this patch.
modules/commons/commons_notices/commons_notices.module 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Code for the Commons Notices feature.
5
- */
3
+   * @file
4
+   * Code for the Commons Notices feature.
5
+   */
6 6
 
7 7
 include_once 'commons_notices.features.inc';
Please login to merge, or discard this patch.
modules/commons/commons_utility_links/commons_utility_links.api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
   if (user_is_logged_in()) {
37 37
     global $user;
38 38
     $account = $user;
39
-    $links['find_fiends']= array(
39
+    $links['find_fiends'] = array(
40 40
       'href' => 'user/' . $account->uid . '/find_friends',
41 41
       'title' => t('Find friends'),
42 42
     );
Please login to merge, or discard this patch.
commons_utility_links/commons_utility_links.commons_utility_links.inc 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@
 block discarded – undo
22 22
       'title' => t('Log out'),
23 23
       'weight' => 9,
24 24
     );
25
-  }
26
-  else {
25
+  } else {
27 26
     if (variable_get('user_register', USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL)) {
28 27
       $links['signup'] = array(
29 28
         'href' => 'user/register',
Please login to merge, or discard this patch.
commons_documents/commons_documents.features.og_features_permission.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * commons_documents.features.og_features_permission.inc
5
- */
3
+   * @file
4
+   * commons_documents.features.og_features_permission.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_og_features_default_permissions().
Please login to merge, or discard this patch.
modules/commons/commons_documents/commons_documents.module 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Code for the Commons Documents feature.
5
- */
3
+   * @file
4
+   * Code for the Commons Documents feature.
5
+   */
6 6
 
7 7
 include_once 'commons_documents.features.inc';
8 8
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 function commons_documents_form_node_form_alter(&$form, &$form_state, $form_id) {
13 13
   $node = $form['#node'];
14 14
 
15
-  list(, , $bundle) = entity_extract_ids('node', $node);
15
+  list(,, $bundle) = entity_extract_ids('node', $node);
16 16
 
17 17
   if ($bundle == 'document' && empty($node->nid)) {
18 18
     drupal_set_title(t('Create a document'));
Please login to merge, or discard this patch.