Completed
Push — master ( 9fc766...ae1c8e )
by Gordon
10:23
created
code/GalleryImageShortCodeHandler.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         $customise['Aperture'] = $galleryImage->Aperture;
31 31
         $customise['ShutterSpeed'] = $galleryImage->ShutterSpeed;
32 32
     
33
-         //set the caption
33
+          //set the caption
34 34
         $customise['Title'] = $galleryImage->Title;
35 35
    
36 36
         //overide the defaults with the arguments supplied
Please login to merge, or discard this patch.
code/GalleryImage.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -43,30 +43,30 @@
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-    * An accessor method for an image for a portlet.
47
-    *
48
-    * @example
49
-    * <code>
50
-    *  return $this->NewsItemImage;
51
-    * </code>
52
-    *
53
-    * @return string
54
-    */
46
+     * An accessor method for an image for a portlet.
47
+     *
48
+     * @example
49
+     * <code>
50
+     *  return $this->NewsItemImage;
51
+     * </code>
52
+     *
53
+     * @return string
54
+     */
55 55
     public function getPortletImage()
56 56
     {
57 57
         return $this->Image();
58 58
     }
59 59
 
60 60
     /**
61
-    * An accessor for text associated with the portlet.
62
-    *
63
-    * @example
64
-    * <code>
65
-    * return $this->Summary
66
-    * </code>
67
-    *
68
-    * @return string
69
-    */
61
+     * An accessor for text associated with the portlet.
62
+     *
63
+     * @example
64
+     * <code>
65
+     * return $this->Summary
66
+     * </code>
67
+     *
68
+     * @return string
69
+     */
70 70
     public function getPortletCaption()
71 71
     {
72 72
         return '';
Please login to merge, or discard this patch.