From: Zach Prezkuta <fermion@gmx.com>
Date: Tue, 19 Jun 2012 03:06:54 +0000 (-0600)
Subject: fix some whitespace issues
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7cd516e34f95945b7f15f42cfe7318dfd907c8d8;p=friendica.git

fix some whitespace issues
---

diff --git a/include/Photo.php b/include/Photo.php
index 66dec06118..54db9278e4 100644
--- a/include/Photo.php
+++ b/include/Photo.php
@@ -124,20 +124,20 @@ class Photo {
 	}
 
 	public function flip($horiz = true, $vert = false) {
-        $w = imagesx($this->image);
-        $h = imagesy($this->image);
-        $flipped = imagecreate($w, $h);
+		$w = imagesx($this->image);
+		$h = imagesy($this->image);
+		$flipped = imagecreate($w, $h);
 		if($horiz) {
-                for ($x = 0; $x < $w; $x++) {
-                        imagecopy($flipped, $this->image, $x, 0, $w - $x - 1, 0, 1, $h);
-                }
-        }
-        if($vert) {
-                for ($y = 0; $y < $h; $y++) {
-                        imagecopy($flipped, $this->image, 0, $y, 0, $h - $y - 1, $w, 1);
-                }
-        }
-        $this->image = $flipped;
+			for ($x = 0; $x < $w; $x++) {
+				imagecopy($flipped, $this->image, $x, 0, $w - $x - 1, 0, 1, $h);
+			}
+		}
+		if($vert) {
+			for ($y = 0; $y < $h; $y++) {
+				imagecopy($flipped, $this->image, 0, $y, 0, $h - $y - 1, $w, 1);
+			}
+		}
+		$this->image = $flipped;
 	}
 
 	public function orient($filename) {