[guadec-web] Removing semicolon errors :-/



commit fceae0a5ea265a82dad6e90a0c445cca6a9aec3d
Author: Saumya Dwivedi <saumya zero gmail com>
Date:   Wed Jul 9 14:47:34 2014 +0530

    Removing semicolon errors :-/

 guadec/ipn.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/guadec/ipn.php b/guadec/ipn.php
index 6bddc0d..0952299 100755
--- a/guadec/ipn.php
+++ b/guadec/ipn.php
@@ -77,7 +77,7 @@ if ($verified) {
     // TODO: Check for duplicate user_id
     $reg_email = $cvar['email'];
     if(empty($reg_email)){
-        $errmsg .= "No Valid user email-address found\n"
+        $errmsg .= "No Valid user email-address found\n";
     }        
     if (!empty($errmsg)) {
         $status = "Fraud-check"
@@ -106,7 +106,7 @@ if ($verified) {
         error_log($body);
         mail($_POST['receiver_email'], 'GUADEC-2014 Registration Payment Successful', $body, $headers);
         mail($_POST['payer_email'], 'GUADEC-2014 Registration Successful', $body, $headers);
-        $body .= "Complete List of items that you have paid for\n"
+        $body .= "Complete List of items that you have paid for\n";
         $email_content =
         "Name: " . $cvar['name'] . "\r\n".
         "Email: " . $cvar['email'] . "\r\n" .


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]