Old config.php is now automatically updated to new config-local.php format, several...
[mailer.git] / inc / libs / yoomedia_functions.php
index 25f3dd9dbb0ffe9bd1b80679e9109aaaf10ee7cf..e236335de6ee403bcc76b168824ebc13e3999e67 100644 (file)
@@ -86,15 +86,15 @@ function YOOMEDIA_QUERY_API ($script, $countQuery = true) {
        if ((getConfig('yoomedia_requests_remain') > 0) || (!$countQuery)) {
                // Prepare the low-level request
                $requestString = sprintf("http://www.yoomedia.de/interface_2.0/%s?id=%s&sid=%s&pw=%s&reload=%s&ma=%s&uebrig=%s&verguetung=%s&erotik=%s",
-                       $script,
-                       getConfig(('yoomedia_id')),
-                       getConfig(('yoomedia_sid')),
-                       getConfig('yoomedia_passwd'),
-                       getConfig(('yoomedia_tm_max_reload')),
-                       getConfig(('yoomedia_tm_min_wait')),
-                       getConfig(('yoomedia_tm_clicks_remain')),
-                       getConfig(('yoomedia_tm_min_pay')),
-                       getConfig(('yoomedia_erotic_allowed'))
+               $script,
+               getConfig(('yoomedia_id')),
+               getConfig(('yoomedia_sid')),
+               getConfig('yoomedia_passwd'),
+               getConfig(('yoomedia_tm_max_reload')),
+               getConfig(('yoomedia_tm_min_wait')),
+               getConfig(('yoomedia_tm_clicks_remain')),
+               getConfig(('yoomedia_tm_min_pay')),
+               getConfig(('yoomedia_erotic_allowed'))
                );
 
                // Run the query
@@ -225,9 +225,9 @@ function YOOMEDIA_SEND_BONUS_MAIL ($data, $mode) {
 
        // Auto-generate URL
        $data['url'] = sprintf("http://www.yoomedia.de/code/%s-mail.php?id=%s&sid=%s",
-               $type,
-               $data['id'],
-               $data['sid']
+       $type,
+       $data['id'],
+       $data['sid']
        );
 
        // Lock this mail for new delivery
@@ -246,7 +246,7 @@ function YOOMEDIA_EXCLUDE_MAIL ($data, $mode) {
 
                // Add the entry
                SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_yoomedia_reload` (`type`,`y_id`,`y_reload`,`inserted`) VALUES ('%s',%s,%s,'0000-00-00 00:00')",
-                       array($mode, bigintval($data['id']), bigintval($data['reload'])), __FUNCTION__, __LINE__);
+               array($mode, bigintval($data['id']), bigintval($data['reload'])), __FUNCTION__, __LINE__);
        } // END - if
 }
 
@@ -257,7 +257,7 @@ function YOOMEDIA_UNLIST_MAIL ($data, $mode) {
 
        // Add the entry
        SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_yoomedia_reload` WHERE `type`='%s' AND `y_id`=%s LIMIT 1",
-               array($mode, bigintval($data['id'])), __FUNCTION__, __LINE__);
+       array($mode, bigintval($data['id'])), __FUNCTION__, __LINE__);
 }
 
 // "Translates" the index number into an assosiative value
@@ -303,7 +303,7 @@ function YOOMEDIA_CHECK_RELOAD ($id, $reload, $type) {
 
        // Query database
        $result = SQL_QUERY_ESC("SELECT `id`, UNIX_TIMESTAMP(`inserted`) AS inserted FROM `{!_MYSQL_PREFIX!}_yoomedia_reload` WHERE `type`='%s' AND `y_id`=%s LIMIT 1",
-               array($type, bigintval($id)), __FUNCTION__, __LINE__);
+       array($type, bigintval($id)), __FUNCTION__, __LINE__);
 
        // Entry found?
        if (SQL_NUMROWS($result) == 1) {
@@ -314,7 +314,7 @@ function YOOMEDIA_CHECK_RELOAD ($id, $reload, $type) {
                if (((time() - $time) >= ($reload * 60*60)) && ($time > 0)) {
                        // Remove entry
                        SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_yoomedia_reload` WHERE `id`=%s LIMIT 1",
-                               array($id), __FUNCTION__, __LINE__);
+                       array($id), __FUNCTION__, __LINE__);
                } else {
                        // Dont' sent again this mail
                        $reloaded = $time;
@@ -337,7 +337,7 @@ function YOOMEDIA_RELOAD_LOCK ($data, $mode) {
 
                // Add the entry
                SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_yoomedia_reload` (`type`,`y_id`,`y_reload`) VALUES ('%s',%s,%s)",
-                       array($mode, bigintval($data['id']), bigintval($data['reload'])), __FUNCTION__, __LINE__);
+               array($mode, bigintval($data['id']), bigintval($data['reload'])), __FUNCTION__, __LINE__);
        } // END - if
 }