diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-04-25 14:20:25 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-04-25 14:20:25 -0700 |
commit | d8e1632b08e608b2b536f52d4785af2182c0da8d (patch) | |
tree | 89f2c36f157fb8252bce00b81623a00aaac8a57d /images | |
parent | dfa9d2bc563a3e8c7bde21eb0da888589456991f (diff) | |
download | pathery-d8e1632b08e608b2b536f52d4785af2182c0da8d.tar.xz |
nothing
Diffstat (limited to 'images')
-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;
|