diff options
-rw-r--r-- | images/marks/rotate.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/images/marks/rotate.php b/images/marks/rotate.php index 41a203a..4626149 100644 --- a/images/marks/rotate.php +++ b/images/marks/rotate.php @@ -1,10 +1,11 @@ <?php
// File and rotation
-$filename = 'OffsetStripesDiagonal_B.png';
$rotate = $_GET['r'] * 1;
//Probably not the best syntax.
if (!is_int($rotate) OR !($rotate > 0) OR !($rotate < 4)) exit;
+//Example value: 'OffsetStripesDiagonal_B.png';
+
$emblem = $_GET['emblem'];
$degrees = $_GET['r'] * 90;
|