diff options
Diffstat (limited to 'action.php')
-rw-r--r-- | action.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/action.php b/action.php index 73ac6d72b..29f9fac38 100644 --- a/action.php +++ b/action.php @@ -127,8 +127,11 @@ if ( empty($file) ) } if ($_GET['part'] == 'h') { - $is_high = true; - pwg_log($_GET['id'], $is_high); + pwg_log($_GET['id'], 'high'); +} +else if ($_GET['part'] == 'e') +{ + pwg_log($_GET['id'], 'other'); } $http_headers = array(); |