Completed
Branch master (780d29)
by Gordon
03:47
created
code/FacebookLikeBoxPage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
   function getCMSFields() {
14 14
     $fields = parent::getCMSFields();
15 15
 
16
-    $fields->addFieldToTab( 'Root.Facebook', new TextField('FacebookURL'));
17
-    $fields->addFieldToTab( 'Root.Facebook', new NumericField('PageWidth', 'Width of stream in pixels'));
16
+    $fields->addFieldToTab('Root.Facebook', new TextField('FacebookURL'));
17
+    $fields->addFieldToTab('Root.Facebook', new NumericField('PageWidth', 'Width of stream in pixels'));
18 18
 
19 19
     return $fields;
20 20
   }
Please login to merge, or discard this patch.
code/FacebookPageExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
   */
9 9
   public function RemoveEntities($text) {
10
-    return preg_replace("/&#?[a-z0-9]{2,8};/i","",$text);
10
+    return preg_replace("/&#?[a-z0-9]{2,8};/i", "", $text);
11 11
   }
12 12
 
13 13
 
Please login to merge, or discard this patch.
code/FacebookCredentials.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 //require_once "facebook.php";
4 4
 
5 5
 class FacebookCredentials extends Page {
6
-  static $db = array (
6
+  static $db = array(
7 7
     'BulkTitle' => 'Varchar',
8 8
     'BulkCaption' => 'Varchar',
9 9
     'BulkCopyright' => 'Varchar',
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
 
26 26
  
27
-  static $has_many = array (
27
+  static $has_many = array(
28 28
     'AttachedFiles' => 'ImageFile'
29 29
   );
30 30
 
Please login to merge, or discard this patch.