A lot forced-space characters ( ) removed, naming convention applied also in...
authorRoland Häder <roland@mxchange.org>
Sun, 6 Jun 2010 15:49:41 +0000 (15:49 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 6 Jun 2010 15:49:41 +0000 (15:49 +0000)
39 files changed:
inc/db/lib-mysql3.php
inc/expression-functions.php
inc/extensions/ext-network.php
inc/filters.php
inc/functions.php
inc/install-inc.php
inc/language/de.php
inc/language/network_de.php
inc/language/payout_de.php
inc/language/sponsor_de.php
inc/language/surfbar_de.php
inc/libs/network_functions.php
inc/libs/user_functions.php
inc/modules/admin/what-list_network_array_translation.php
inc/modules/admin/what-list_network_translations.php [new file with mode: 0644]
inc/modules/admin/what-list_payouts.php
templates/de/html/admin/admin_add_network_array_translation.tpl
templates/de/html/admin/admin_list_sponsor_row.tpl
templates/de/html/admin/admin_list_user_pagenav.tpl
templates/de/html/guest/guest_menu_title.tpl
templates/de/html/guest/guest_receive_table.tpl
templates/de/html/guest/guest_sponsor_activate.tpl
templates/de/html/guest/guest_sponsor_reg.tpl
templates/de/html/index.tpl
templates/de/html/js/js_surfbar_stopped.tpl
templates/de/html/loader.tpl
templates/de/html/mailid/mailid_timer.tpl
templates/de/html/runtime_fatal_row.tpl
templates/de/html/select/select_network_type_box.tpl
templates/de/html/select/select_network_type_title_box.tpl [new file with mode: 0644]
templates/de/html/select/select_network_type_title_option.tpl [new file with mode: 0644]
templates/de/html/show_bonus_yr.tpl
templates/de/html/show_timings.tpl
templates/de/html/sponsor/sponsor_account_form.tpl
templates/de/html/sponsor/sponsor_fillup_form.tpl
templates/de/html/sponsor/sponsor_footer.tpl
templates/de/html/sponsor/sponsor_settings_form.tpl
templates/de/html/surfbar/surfbar_frame_top.tpl
templates/de/html/welcome.tpl

index cd5efd46002ad1c872a9e526ae91c6721805f530..4f4b8cd0989c67d6fbadf6c02a587db58927357b 100644 (file)
@@ -76,8 +76,7 @@ function SQL_QUERY ($sqlString, $F, $L) {
        $sqlString = str_replace('{PER}', '%', $sqlString);
 
        // Compile config entries out
        $sqlString = str_replace('{PER}', '%', $sqlString);
 
        // Compile config entries out
-       $eval = '$sqlString = "' . FILTER_COMPILE_CONFIG(escapeQuotes($sqlString)) . '";';
-       eval($eval);
+       $sqlString = SQL_PREPARE_SQL_STRING($sqlString);
 
        // Starting time
        $querytimeBefore = microtime(true);
 
        // Starting time
        $querytimeBefore = microtime(true);
@@ -550,5 +549,21 @@ function SQL_HASZERONUMS ($result) {
        return (SQL_NUMROWS($result) === 0);
 }
 
        return (SQL_NUMROWS($result) === 0);
 }
 
+// Private function to prepare the SQL query string
+function SQL_PREPARE_SQL_STRING ($sqlString) {
+       // Is it already cached?
+       if (!isset($GLOBALS['sql_strings'][$sqlString])) {
+               // No, then generate the eval() command
+               $eval = '$sql = "' . FILTER_COMPILE_EXPRESSION_CODE(FILTER_COMPILE_CONFIG(escapeQuotes($sqlString))) . '";';
+               eval($eval);
+
+               // ... and set it
+               $GLOBALS['sql_strings'][$sqlString] = $sql;
+       } // END - if
+
+       // Return it
+       return $GLOBALS['sql_strings'][$sqlString];
+}
+
 // [EOF]
 ?>
 // [EOF]
 ?>
index c77eb0c92aec2bfca0887f262e79bc34119f92c6..c3d1f57f8b9d015880d86593df7a0a472b1f01d1 100644 (file)
@@ -42,10 +42,17 @@ if (!defined('__SECURITY')) {
        die();
 } // END - if
 
        die();
 } // END - if
 
+// Private function to replace the code
+function replaceExpressionCode ($data, $replacer) {
+       // Replace the code
+       // @TODO is escapeQuotes() enougth for strings with single/double quotes?
+       return str_replace($data['matches'][0][$data['key']], $replacer, escapeQuotes($data['code']));
+}
+
 // Expression call-back function for getCode() calls
 function doExpressionCode ($data) {
        // Replace the code
 // Expression call-back function for getCode() calls
 function doExpressionCode ($data) {
        // Replace the code
-       $code = str_replace($data['matches'][0][$data['key']], "\" . getCode('" . $data['matches'][4][$data['key']] . "') . \"", $data['code']);
+       $code = str_replace($data['matches'][0][$data['key']], "{DQUOTE} . getCode('" . $data['matches'][4][$data['key']] . "') . {DQUOTE}", $data['code']);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -57,10 +64,10 @@ function doExpressionUrl ($data) {
        if ($data['callback'] == 'js') $data['mode'] = 1;
 
        // Handle an URL here
        if ($data['callback'] == 'js') $data['mode'] = 1;
 
        // Handle an URL here
-       $replacer = "\" . encodeUrl(\"" . $data['matches'][4][$data['key']] . "\", " . $data['mode'] . ") . \"";
+       $replacer = "{DQUOTE} . encodeUrl('" . $data['matches'][4][$data['key']] . "', " . $data['mode'] . ') . {DQUOTE}';
 
        // Replace it
 
        // Replace it
-       $code = str_replace($data['matches'][0][$data['key']], $replacer, $data['code']);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -71,8 +78,11 @@ function doExpressionServer ($data) {
        // This will make 'foo_bar' to detectFooBar()
        $functionName = "'detect' . implode('', array_map('ucfirst', explode('_', '" . $data['callback'] . "')))";
 
        // This will make 'foo_bar' to detectFooBar()
        $functionName = "'detect' . implode('', array_map('ucfirst', explode('_', '" . $data['callback'] . "')))";
 
+       // Generate replacer
+       $replacer = '{DQUOTE} . call_user_func(' . $functionName . ') . {DQUOTE}';
+
        // Replace it
        // Replace it
-       $code = str_replace($data['matches'][0][$data['key']], "\" . call_user_func(" . $functionName . ") . \"", $data['code']);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -104,8 +114,11 @@ function doExpressionUser ($data) {
                $functionName = $data['extra_func'] . '(' . $functionName . ')';
        } // END - if
 
                $functionName = $data['extra_func'] . '(' . $functionName . ')';
        } // END - if
 
+       // Generate replacer
+       $replacer = '{DQUOTE} . ' . $functionName . ' . "';
+
        // Now replace the code
        // Now replace the code
-       $code = str_replace($data['matches'][0][$data['key']], "\" . " . $functionName . " . \"", $data['code']);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -122,11 +135,14 @@ function doExpressionExt ($data) {
                $functionName = 'getExtension' . ucfirst(strtolower($data['callback']));
 
                // Construct call of the function
                $functionName = 'getExtension' . ucfirst(strtolower($data['callback']));
 
                // Construct call of the function
-               $replacer = "\" . call_user_func_array('" . $functionName . "', array('" . $data['matches'][4][$data['key']] . "', true)) . \"";
+               $replacer = "{DQUOTE} . call_user_func_array('" . $functionName . "', array('" . $data['matches'][4][$data['key']] . "', true)) . {DQUOTE}";
        } // END - if
 
        } // END - if
 
+       // Generate replacer
+       $replacer = sprintf("&amp;ext=%s&amp;ver=%s&amp;rev={DQUOTE} . getConfig('CURR_SVN_REVISION') . {DQUOTE}", $data['matches'][4][$data['key']], $replacer);
+
        // Replace it and insert parameter for GET request
        // Replace it and insert parameter for GET request
-       $code = str_replace($data['matches'][0][$data['key']], sprintf("&amp;ext=%s&amp;ver=%s&amp;rev=\" . getConfig('CURR_SVN_REVISION') . \"", $data['matches'][4][$data['key']], $replacer), $data['code']);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -138,11 +154,17 @@ function doExpressionConfig ($data) {
        // Read configuration
        $configValue = getConfig($data['matches'][4][$data['key']]);
 
        // Read configuration
        $configValue = getConfig($data['matches'][4][$data['key']]);
 
-       // Construct a new expression
-       $replacer = '{%pipe,' . $data['callback'] . ',' . $configValue . '%}';
+       // Default replacer is the config value itself
+       $replacer = $configValue;
+
+       // Is there a call-back function provided?
+       if (!empty($data['callback'])) {
+               // Construct a new expression
+               $replacer = '{%pipe,' . $data['callback'] . ',' . $configValue . '%}';
+       } // END - if
 
        // Replace the config entry
 
        // Replace the config entry
-       $code = str_replace($data['matches'][0][$data['key']], $replacer, $data['code']);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -156,11 +178,11 @@ function doExpressionPipe ($data) {
        // Do we have a call-back? Should always be there!
        if (!empty($data['callback'])) {
                // Parse it through this function
        // Do we have a call-back? Should always be there!
        if (!empty($data['callback'])) {
                // Parse it through this function
-               $replacer = "\" . " . $data['callback'] . "('" . $replacer . "') . \"";
+               $replacer = '{DQUOTE} . ' . $data['callback'] . "('" . $replacer . "') . {DQUOTE}";
        } // END - if
 
        // Replace the config entry
        } // END - if
 
        // Replace the config entry
-       $code = str_replace($data['matches'][0][$data['key']], $replacer, $data['code']);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -169,10 +191,10 @@ function doExpressionPipe ($data) {
 // Expression call-back function for calling filters
 function doExpressionFilter ($data) {
        // Construct replacement
 // Expression call-back function for calling filters
 function doExpressionFilter ($data) {
        // Construct replacement
-       $replacer = "\" . runFilterChain('" . $data['matches'][4][$data['key']] . "') . \"";
+       $replacer = "{DQUOTE} . runFilterChain('" . $data['matches'][4][$data['key']] . "') . {DQUOTE}";
 
        // Run the filter and insert result
 
        // Run the filter and insert result
-       $code = str_replace($data['matches'][0][$data['key']], $replacer, $data['code']);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return replaced code
        return $code;
 
        // Return replaced code
        return $code;
@@ -193,7 +215,7 @@ function doExpressionValidatorLinks ($data) {
        } // END - if
 
        // Replace the code
        } // END - if
 
        // Replace the code
-       $code = str_replace($data['matches'][0][$data['key']], $replacer, $code);
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return the (maybe) replaced code
        return $code;
 
        // Return the (maybe) replaced code
        return $code;
@@ -204,15 +226,14 @@ function doExpressionMessage ($data) {
        // Message string replacement depends on if message is masked
        if (isMessageMasked($data['callback'])) {
                // Message should be masked
        // Message string replacement depends on if message is masked
        if (isMessageMasked($data['callback'])) {
                // Message should be masked
-               $replacer = "\" . getMaskedMessage('" . $data['callback'] . "', '" . $data['extra_func'] . "') . \"";
+               $replacer = "{DQUOTE} . getMaskedMessage('" . $data['callback'] . "', '" . $data['extra_func'] . "') . {DQUOTE}";
        } else {
                // Regular message
        } else {
                // Regular message
-               $replacer = "\" . getMessage('" . $data['callback'] . "') . \"";
+               $replacer = "{DQUOTE} . getMessage('" . $data['callback'] . "') . {DQUOTE}";
        }
 
        // Replace the code
        }
 
        // Replace the code
-       // @TODO is escapeQuotes enougth for strings with single/double quotes?
-       $code = str_replace($data['matches'][0][$data['key']], $replacer, escapeQuotes($data['code']));
+       $code = replaceExpressionCode($data, $replacer);
 
        // Return the (maybe) replaced code
        return $code;
 
        // Return the (maybe) replaced code
        return $code;
index c74f1153f92df4485b639419e37feb43f65c555f..82af41e464d91af9e751597894dd6203ed83dd8f 100644 (file)
@@ -158,7 +158,7 @@ PRIMARY KEY (`network_translate_id`)
 UNIQUE `provider_type_key` (`network_id`,`network_type_id`,`network_array_index`),
 UNIQUE `provider_type_trans` (`network_id`,`network_type_id`,`network_index_translation`),
 PRIMARY KEY (`network_array_id`)
 UNIQUE `provider_type_key` (`network_id`,`network_type_id`,`network_array_index`),
 UNIQUE `provider_type_trans` (`network_id`,`network_type_id`,`network_index_translation`),
 PRIMARY KEY (`network_array_id`)
-) TYPE={?_TABLE_TYPE?} COMMENT='Return codes'");
+) TYPE={?_TABLE_TYPE?} COMMENT='Translation of API responses'");
 
                // Data from the webmaster (you!)
                addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_config`');
 
                // Data from the webmaster (you!)
                addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_config`');
@@ -2041,7 +2041,8 @@ PRIMARY KEY (`network_reload_id`)
                addAdminMenuSql('network','list_network_params','Abfrageparameter','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Abfrageparameter (wie sie genannt werden m&uuml;ssen, um das API-Script korrekt aufrufen zu k&ouml;nnen) ein, pro Werbenetzwerk. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',8);
                addAdminMenuSql('network','list_network_array_translation','Antwort-Array','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Zuweisungen der aus der analysierten API-Antwort Array-Elementen zu den Datenspalten ein. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',9);
                addAdminMenuSql('network','list_network_error_codes','Fehlercodes','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Fehlercodes ein, die im Falle eines Fehlers pro API-Script kommen k&ouml;nnen. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',10);
                addAdminMenuSql('network','list_network_params','Abfrageparameter','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Abfrageparameter (wie sie genannt werden m&uuml;ssen, um das API-Script korrekt aufrufen zu k&ouml;nnen) ein, pro Werbenetzwerk. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',8);
                addAdminMenuSql('network','list_network_array_translation','Antwort-Array','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Zuweisungen der aus der analysierten API-Antwort Array-Elementen zu den Datenspalten ein. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',9);
                addAdminMenuSql('network','list_network_error_codes','Fehlercodes','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Fehlercodes ein, die im Falle eines Fehlers pro API-Script kommen k&ouml;nnen. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',10);
-               addAdminMenuSql('network','list_network_error_types','Fehlertypen','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Namen von Fehlercodes ein, die Scripte zur&uuml;ckliefern k&ouml;nnen. <strong>Dies sind INTERNE Daten und sollten nur vom Entwicklerteam angepasst werden.</strong> Stellen Sie an diesen Einstellungen bitte nichts um. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',11);
+               addAdminMenuSql('network','list_network_translations','Array-&Uuml;bersetzungen','<strong>Experten-Einstellungen!</strong> Hier richten Sie Array-Index-&Uuml;bersetzungen f&uuml;r nicht-fehler API-Antworten ein. <strong>Dies sind INTERNE Daten und sollten nur vom Entwicklerteam angepasst werden.</strong> Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',11);
+               addAdminMenuSql('network','list_network_error_types','Fehlertypen','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Namen von Fehlercodes ein, die Scripte zur&uuml;ckliefern k&ouml;nnen. <strong>Dies sind INTERNE Daten und sollten nur vom Entwicklerteam angepasst werden.</strong> Stellen Sie an diesen Einstellungen bitte nichts um. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',12);
 
                // Configuration entries
                addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `network_cache_refresh` BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (60 * 15) . '');
 
                // Configuration entries
                addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `network_cache_refresh` BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (60 * 15) . '');
index 198067b39d9e6433aedba0f1b02f6a147095eab5..4dcb9e3f0f0d3999e1f69a5f202980678eb6af65 100644 (file)
@@ -71,8 +71,8 @@ function FILTER_FLUSH_FILTERS () {
        $removed = '0';
 
        // Prepare SQL queries
        $removed = '0';
 
        // Prepare SQL queries
-       $insertSQL = "INSERT INTO `{?_MYSQL_PREFIX?}_filters` (`filter_name`,`filter_function`,`filter_active`) VALUES";
-       $removeSQL = "DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_filters` WHERE";
+       $insertSQL = 'INSERT INTO `{?_MYSQL_PREFIX?}_filters` (`filter_name`,`filter_function`,`filter_active`) VALUES';
+       $removeSQL = 'DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_filters` WHERE';
 
        // Write all filters to database
        foreach ($GLOBALS['cache_array']['filter']['chains'] as $filterName => $filterArray) {
 
        // Write all filters to database
        foreach ($GLOBALS['cache_array']['filter']['chains'] as $filterName => $filterArray) {
@@ -409,13 +409,13 @@ function FILTER_COMPILE_CONFIG ($code, $compiled = false) {
                                        // Is the config valid?
                                        if (isConfigEntrySet($matches[1][$key])) {
                                                // Set it for caching
                                        // Is the config valid?
                                        if (isConfigEntrySet($matches[1][$key])) {
                                                // Set it for caching
-                                               $GLOBALS['compile_config'][$matches[1][$key]] = "\" . getConfig('" . $matches[1][$key] . "') . \"";
+                                               $GLOBALS['compile_config'][$matches[1][$key]] = '{%config=' . $matches[1][$key] . '%}';
                                        } elseif (isConfigEntrySet('default_' . strtoupper($matches[1][$key]))) {
                                                // Use default value
                                        } elseif (isConfigEntrySet('default_' . strtoupper($matches[1][$key]))) {
                                                // Use default value
-                                               $GLOBALS['compile_config'][$matches[1][$key]] = "\" . getConfig('" . 'DEFAULT_' . strtoupper($matches[1][$key]) . "') . \"";
+                                               $GLOBALS['compile_config'][$matches[1][$key]] = '{%config=' . 'DEFAULT_' . strtoupper($matches[1][$key]) . '%}';
                                        } elseif (isMessageIdValid('DEFAULT_' . strtoupper($matches[1][$key]))) {
                                                // No config, try the language system
                                        } elseif (isMessageIdValid('DEFAULT_' . strtoupper($matches[1][$key]))) {
                                                // No config, try the language system
-                                               $GLOBALS['compile_config'][$matches[1][$key]] = "\" . getMessage('". 'DEFAULT_' . strtoupper($matches[1][$key]) . "') . \"";
+                                               $GLOBALS['compile_config'][$matches[1][$key]] = '{%message,DEFAULT_' . strtoupper($matches[1][$key]) . '%}';
                                        } else {
                                                // Unhandled!
                                                $GLOBALS['compile_config'][$matches[1][$key]] = '!' . $matches[1][$key] . '!';
                                        } else {
                                                // Unhandled!
                                                $GLOBALS['compile_config'][$matches[1][$key]] = '!' . $matches[1][$key] . '!';
index eec116f9c7cd0c52b9a87f25ef4dd13ff2a8f696..7b9e64ad5ba58d1bd2b2b5b3a265f780c042f51c 100644 (file)
@@ -157,16 +157,17 @@ function compileFinalOutput () {
        addPageHeaderFooter();
 
        // Compile all out
        addPageHeaderFooter();
 
        // Compile all out
-       while (((strpos($GLOBALS['output'], '{--') !== false) || (strpos($GLOBALS['output'], '{!') !== false) || (strpos($GLOBALS['output'], '{?') !== false) || (strpos($GLOBALS['output'], '{%') !== false)) && ($cnt < 3)) {
+       while (((strpos($GLOBALS['output'], '{--') !== false) || (strpos($GLOBALS['output'], '{DQUOTE}') !== false) || (strpos($GLOBALS['output'], '{!') !== false) || (strpos($GLOBALS['output'], '{?') !== false) || (strpos($GLOBALS['output'], '{%') !== false)) && ($cnt < 3)) {
                // Init common variables
                $content = array();
                $newContent = '';
 
                // Compile it
                //* DEBUG: */ print '<pre>'.htmlentities($GLOBALS['output']).'</pre>';
                // Init common variables
                $content = array();
                $newContent = '';
 
                // Compile it
                //* DEBUG: */ print '<pre>'.htmlentities($GLOBALS['output']).'</pre>';
-               $eval = '$newContent = "' . compileCode(escapeQuotes($GLOBALS['output'])) . '";';
+               $eval = '$newContent = "' . str_replace('{DQUOTE}', '"', compileCode(escapeQuotes($GLOBALS['output']))) . '";';
                //* DEBUG: */ die('<pre>'.htmlentities($eval).'</pre>');
                eval($eval);
                //* DEBUG: */ die('<pre>'.htmlentities($eval).'</pre>');
                eval($eval);
+               //* DEBUG: */ die('<pre>'.htmlentities($newContent).'</pre>');
 
                // Was that eval okay?
                if (empty($newContent)) {
 
                // Was that eval okay?
                if (empty($newContent)) {
@@ -1708,7 +1709,10 @@ function addEmailNavigation ($PAGES, $offset, $show_form, $colspan, $return=fals
                }
 
                // Add seperator if we have not yet reached total pages
                }
 
                // Add seperator if we have not yet reached total pages
-               if ($page < $PAGES) $NAV .= '&nbsp;|&nbsp;';
+               if ($page < $PAGES) {
+                       // Add it
+                       $NAV .= '|';
+               } // END - if
        } // END - for
 
        // Define constants only once
        } // END - for
 
        // Define constants only once
@@ -2081,7 +2085,7 @@ function generateMemberAdminActionLinks ($userid, $status = '') {
        $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
 
        // Begin of navigation links
        $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
 
        // Begin of navigation links
-       $OUT = '[&nbsp;';
+       $OUT = '[';
 
        foreach ($targetArray as $tar) {
                $OUT .= '<span class="admin_user_link"><a href="{%url=modules.php?module=admin&amp;what=' . $tar . '&amp;userid=' . $userid . '%}" title="{--ADMIN_LINK_';
 
        foreach ($targetArray as $tar) {
                $OUT .= '<span class="admin_user_link"><a href="{%url=modules.php?module=admin&amp;what=' . $tar . '&amp;userid=' . $userid . '%}" title="{--ADMIN_LINK_';
@@ -2101,7 +2105,7 @@ function generateMemberAdminActionLinks ($userid, $status = '') {
                        // All other status is fine
                        $OUT .= strtoupper($tar);
                }
                        // All other status is fine
                        $OUT .= strtoupper($tar);
                }
-               $OUT .= '--}</a></span>&nbsp;|&nbsp;';
+               $OUT .= '--}</a></span>|';
        }
 
        // Finish navigation link
        }
 
        // Finish navigation link
@@ -3261,12 +3265,12 @@ function generateExtensionNotInstalledMessage ($ext_name) {
        } // END - if
 
        // Default message
        } // END - if
 
        // Default message
-       $message = getMaskedMessage('EXTENSION_PROBLEM_EXT_NOT_INSTALLED', $ext_name);
+       $message = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', $ext_name);
 
        // Is an admin logged in?
        if (isAdmin()) {
                // Then output admin message
 
        // Is an admin logged in?
        if (isAdmin()) {
                // Then output admin message
-               $message = getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXT_NOT_INSTALLED', $ext_name);
+               $message = getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', $ext_name);
        } // END - if
 
        // Return prepared message
        } // END - if
 
        // Return prepared message
@@ -3749,7 +3753,7 @@ function sendModeMails ($mod, $modes) {
 }
 
 // Generates a 'selection box' from given array
 }
 
 // Generates a 'selection box' from given array
-function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionContent='') {
+function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionContent = '', $extraName = '') {
        // Start the output
        $OUT = '<select name="' . $name . '" size="1" class="admin_select">
 <option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>';
        // Start the output
        $OUT = '<select name="' . $name . '" size="1" class="admin_select">
 <option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>';
@@ -3759,7 +3763,7 @@ function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionCo
                // Add the <option> entry
                if (empty($optionContent)) {
                        // ... from template
                // Add the <option> entry
                if (empty($optionContent)) {
                        // ... from template
-                       $OUT .= loadTemplate('select_' . $name . '_option', true, $option);
+                       $OUT .= loadTemplate('select_' . $name . $extraName . '_option', true, $option);
                } else {
                        // Direct HTML code
                        $OUT .= '<option value="' . $option[$optionValue] . '">' . $option[$optionContent] . '</option>';
                } else {
                        // Direct HTML code
                        $OUT .= '<option value="' . $option[$optionValue] . '">' . $option[$optionContent] . '</option>';
@@ -3777,7 +3781,7 @@ function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionCo
        );
 
        // Load template and return it
        );
 
        // Load template and return it
-       return loadTemplate('select_' . $name . '_box', true, $content);
+       return loadTemplate('select_' . $name . $extraName . '_box', true, $content);
 }
 
 // Get a module from filename and access level
 }
 
 // Get a module from filename and access level
index 38e4a6be53215fab6f09a696c03df77e77578bf8..f27ccb8c024bd35f0c9364f7559e44d96033fbfc 100644 (file)
@@ -103,7 +103,7 @@ if ((!isInstalled()) || (!isAdminRegistered())) {
                        if (ifFatalErrorsDetected()) {
                                addToInstallContent('<div class="install_fatal">');
                                foreach (getFatalArray() as $key => $err) {
                        if (ifFatalErrorsDetected()) {
                                addToInstallContent('<div class="install_fatal">');
                                foreach (getFatalArray() as $key => $err) {
-                                       addToInstallContent('<div class="para"><strong>&middot;</strong>&nbsp;{--FATAL_NO--}' . ($key + 1) . ':&nbsp;' . $err . '</div>');
+                                       addToInstallContent('<div class="para"><strong>&middot;</strong> {--FATAL_NO--}' . ($key + 1) . ': ' . $err . '</div>');
                                } // END - foreach
                                addToInstallContent('</div>');
                        } // END - if
                                } // END - foreach
                                addToInstallContent('</div>');
                        } // END - if
index b91dfb6f5adbdf3f3b8177dbefcc24d0518bb789..d336270cccc955adcd550269856db7ada61105da 100644 (file)
@@ -1029,15 +1029,14 @@ addMessages(array(
        'SUBJECT_DIRECT_PAYMENT' => "Direkte {?POINTS?}-Gutschrift durch das System",
        'ADMIN_LOGOUT_SQL_PATCHES_DONE' => "Sie wurden automatisch ausgeloggt, da Sie die Erweiterung <strong>sql_patches</strong> installiert haben und dabei das Passort-Hashing ge&auml;ndert/verbessert wurde. Bitte erneut einloggen.",
        'ADMIN_LOGOUT_SQL_PATCHES_REMOVE' => "Sie wurden automatisch ausgeloggt, da Sie die Erweiterung <strong>sql_patches</strong> entfernt haben. Bitte klicken Sie weiter, um jetzt das Passwort neu zu setzen.",
        'SUBJECT_DIRECT_PAYMENT' => "Direkte {?POINTS?}-Gutschrift durch das System",
        'ADMIN_LOGOUT_SQL_PATCHES_DONE' => "Sie wurden automatisch ausgeloggt, da Sie die Erweiterung <strong>sql_patches</strong> installiert haben und dabei das Passort-Hashing ge&auml;ndert/verbessert wurde. Bitte erneut einloggen.",
        'ADMIN_LOGOUT_SQL_PATCHES_REMOVE' => "Sie wurden automatisch ausgeloggt, da Sie die Erweiterung <strong>sql_patches</strong> entfernt haben. Bitte klicken Sie weiter, um jetzt das Passwort neu zu setzen.",
-       'ADMIN_POINTS_REPAYED' => "Es wurden dem Mitglied <span class=\"data\">%s&nbsp; {?POINTS?}</span> zur&uuml;ckgeschrieben.",
-       'ADMIN_POINTS_TO_JACKPOT' => "Es wurden <span class=\"data\">%s&nbsp; {?POINTS?}</span> in den Jackpot gelegt.",
+       'ADMIN_POINTS_REPAYED' => "Es wurden dem Mitglied <span class=\"data\">%s {?POINTS?}</span> zur&uuml;ckgeschrieben.",
+       'ADMIN_POINTS_TO_JACKPOT' => "Es wurden <span class=\"data\">%s {?POINTS?}</span> in den Jackpot gelegt.",
        'ADMIN_NO_POINTS_REPAYED' => "Die Mailbuchung hatte keine {?POINTS?} zum zur&uuml;ckbuchen.",
        'ADMIN_NO_POINTS_REPAYED' => "Die Mailbuchung hatte keine {?POINTS?} zum zur&uuml;ckbuchen.",
-       'ADMIN_POINTS_SHREDDED' => "Es wurden <span class=\"data\">%s&nbsp; {?POINTS?}</span> geschrettert.",
-       'EXTENSION_PROBLEM_EXTENSION_INACTIVE' => "Kann nicht fortfahren! Fehler: Erweiterung <span class=\"data\">%s</span> deaktiviert.",
+       'ADMIN_POINTS_SHREDDED' => "Es wurden <span class=\"data\">%s {?POINTS?}</span> geschrettert.",
        'ADMIN_EXTENSION_PROBLEM_EXTENSION_INACTIVE' => "Die Erweiterung <span class=\"data\">%s</span> ist derzeit deaktiviert. <a href=\"{%%url=modules.php?module=admin&amp;what=extensions%%}\">Hier</a> k&ouml;nnen Sie diese aktivieren.",
        'ADMIN_EXTENSION_PROBLEM_EXTENSION_INACTIVE' => "Die Erweiterung <span class=\"data\">%s</span> ist derzeit deaktiviert. <a href=\"{%%url=modules.php?module=admin&amp;what=extensions%%}\">Hier</a> k&ouml;nnen Sie diese aktivieren.",
-       'EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED' => "Kann nicht fortfahren! Fehler: Erweiterung <span class=\"data\">%s</span> nicht installiert.",
        'ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED' => "Die Erweiterung <span class=\"data\">%s</span> ist derzeit nicht installiert. <a href=\"{%%url=modules.php?module=admin&amp;what=extensions%%}\">Hier</a> k&ouml;nnen Sie diese aktivieren.",
        'ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED' => "Die Erweiterung <span class=\"data\">%s</span> ist derzeit nicht installiert. <a href=\"{%%url=modules.php?module=admin&amp;what=extensions%%}\">Hier</a> k&ouml;nnen Sie diese aktivieren.",
-       'EXTENSION_PROBLEM_NOT_INSTALLED' => "Erweiterung <span class=\"data\">%s</span> nicht installiert.",
+       'EXTENSION_PROBLEM_EXTENSION_INACTIVE' => "Kann nicht fortfahren! Fehler: Erweiterung <span class=\"data\">%s</span> deaktiviert.",
+       'EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED' => "Kann nicht fortfahren! Fehler: Erweiterung <span class=\"data\">%s</span> nicht installiert.",
        'EXTENSION_PROBLEM_UNSET_EXT' => "Skriptfehler: Parameter <strong>ext</strong> nicht gesetzt.",
        'EXTENSION_WARNING_EXTENSION_INACTIVE' => "Die Erweiterung <span class=\"data\">%s</span> ist nicht aktiv. Dies kann zu St&ouml;rungen f&uuml;hren.<br />\nBitte aktivieren Sie diese unter <em>Verschiedenes-&gt;Erweiterungen</em>.",
        'EXTENSION_WARNING_USER_LIMIT' => "Die Erweiterung <u>user</u> ist nicht aktiv. Die Anzahl Mitglieder pro Seite wurde auf 100 gesetzt. Bitte aktivieren Sie diese unter <em>Verschiedenes-&gt;Erweiterungen</em>.",
        'EXTENSION_PROBLEM_UNSET_EXT' => "Skriptfehler: Parameter <strong>ext</strong> nicht gesetzt.",
        'EXTENSION_WARNING_EXTENSION_INACTIVE' => "Die Erweiterung <span class=\"data\">%s</span> ist nicht aktiv. Dies kann zu St&ouml;rungen f&uuml;hren.<br />\nBitte aktivieren Sie diese unter <em>Verschiedenes-&gt;Erweiterungen</em>.",
        'EXTENSION_WARNING_USER_LIMIT' => "Die Erweiterung <u>user</u> ist nicht aktiv. Die Anzahl Mitglieder pro Seite wurde auf 100 gesetzt. Bitte aktivieren Sie diese unter <em>Verschiedenes-&gt;Erweiterungen</em>.",
index 99b0beb2089d674326c9bbdb95007d900ad5e3b4..202315452666296f1ea830df76ae9e4c16ee261d 100644 (file)
@@ -65,6 +65,7 @@ addMessages(array(
        'ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_CHANGED' => "Es wurden keine &Auml;nderungen an den API-Parametern ausgef&uuml;hrt.",
        'ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_REMOVED' => "Es wurden keine API-Parameter gel&ouml;scht.",
        'ADMIN_NETWORK_ARRAY_TRANSLATION_404' => "Es wurden keine &Uuml;bersetzungen zum Antwort-Array zum Werbenetzwerk <span class=\"data\">%s</span> gefunden.",
        'ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_CHANGED' => "Es wurden keine &Auml;nderungen an den API-Parametern ausgef&uuml;hrt.",
        'ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_REMOVED' => "Es wurden keine API-Parameter gel&ouml;scht.",
        'ADMIN_NETWORK_ARRAY_TRANSLATION_404' => "Es wurden keine &Uuml;bersetzungen zum Antwort-Array zum Werbenetzwerk <span class=\"data\">%s</span> gefunden.",
+       'ADMIN_NETWORK_TRANSLATIONS_404' => "Es wurden keine Array-&Uuml;bersetzungen f&uuml;r den Werbeart-Handler <span class=\"data\">%s (<a href=\"{%%network,getNetworkDataById,network_reflink=%%network%%%%}\" target=\"_blank\" title=\"{%%network,getNetworkDataById,network_title=%%network%%%%}\">{%%network,getNetworkDataById,network_title=%%network%%%%}</a>)</span> gefunden.",
        // - Form titles
        'ADMIN_NETWORK_ADD_TITLE' => "Neues Werbenetzwerk hinzuf&uuml;gen - Allgemeine Daten",
        'ADMIN_NETWORK_EDIT_TITLE' => "Werbenetzwerk editieren - Allgemeine Daten",
        // - Form titles
        'ADMIN_NETWORK_ADD_TITLE' => "Neues Werbenetzwerk hinzuf&uuml;gen - Allgemeine Daten",
        'ADMIN_NETWORK_EDIT_TITLE' => "Werbenetzwerk editieren - Allgemeine Daten",
@@ -194,8 +195,8 @@ addMessages(array(
        'ADMIN_NETWORK_REQUEST_PARAMETER_EROTIC' => "Erotik erlaubt",
        'ADMIN_NETWORK_REQUEST_PARAMETER_EXTRA' => "Extra-Parameter",
        // - Return code translation
        'ADMIN_NETWORK_REQUEST_PARAMETER_EROTIC' => "Erotik erlaubt",
        'ADMIN_NETWORK_REQUEST_PARAMETER_EXTRA' => "Extra-Parameter",
        // - Return code translation
-       'ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX' => "R&uuml;ckgabe-Code ausw&auml;hlen",
-       'ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX_TRANSLATION' => "",
+       'ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX' => "Neuen Array-Index eintragen",
+       'ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX_TRANSLATION' => "Index-&Uuml;bersetzung ausw&auml;hlen",
        // Error codes
        'ADMIN_NETWORK_AFF_ID_PASS_WRONG_ERROR_CODE' => "Affiliate-Id oder -Passwort falsch",
        'ADMIN_NETWORK_SITE_ID_NOT_ASSIGNED_ERROR_CODE' => "Seiten-Id nicht zugewiesen/ung&uuml;ltig",
        // Error codes
        'ADMIN_NETWORK_AFF_ID_PASS_WRONG_ERROR_CODE' => "Affiliate-Id oder -Passwort falsch",
        'ADMIN_NETWORK_SITE_ID_NOT_ASSIGNED_ERROR_CODE' => "Seiten-Id nicht zugewiesen/ung&uuml;ltig",
index 8fe926a2764629a83412b2bb0d1e7ea9e53ca5f8..d50bbe5b57a6cd78929b5a5c589076ff43a3979f 100644 (file)
@@ -100,7 +100,7 @@ addMessages(array(
        'PAYOUT_TARGET_BANK2' => "Ziel-Bank",
        'PAYOUT_ID' => "Auszahlungs-Id",
        'PAYOUT_TIMESTAMP' => "Wann?",
        'PAYOUT_TARGET_BANK2' => "Ziel-Bank",
        'PAYOUT_ID' => "Auszahlungs-Id",
        'PAYOUT_TIMESTAMP' => "Wann?",
-       'PAYOUT_STATUS' => "Status&nbsp;/&nbsp;Aktionen",
+       'PAYOUT_STATUS' => "Status/Aktionen",
        'PAYOUT_STATUS_NEW' => "Neu",
        'PAYOUT_STATUS_ACCEPTED' => "Angenommen",
        'PAYOUT_STATUS_REJECTED' => "Abgelehnt",
        'PAYOUT_STATUS_NEW' => "Neu",
        'PAYOUT_STATUS_ACCEPTED' => "Angenommen",
        'PAYOUT_STATUS_REJECTED' => "Abgelehnt",
index 6f7463b76ac8d92985cee8851c3faa08bcf65fca..485566a57f314cb05acfadbefd0e91858e94e8df 100644 (file)
@@ -277,7 +277,7 @@ addMessages(array(
        'SPONSOR_LOGIN_FAILED_LOCKED' => "Ihr Account wurde gesperrt, vermutlich wegen Nichteinhaltung von Regeln.",
        'SPONSOR_LOGIN_FAILED_EMAIL' => "Sie haben Ihre Email-Adresse ge&auml;ndert und diese noch nicht best&auml;tigt.",
        'SPONSPOR_COOKIE_SETUP_FAILED' => "Es konnten keine Cookies gesetzt werden. Bitte Sicherheitseinstellungen in Ihrem Browser &uuml;berpr&uuml;fen.",
        'SPONSOR_LOGIN_FAILED_LOCKED' => "Ihr Account wurde gesperrt, vermutlich wegen Nichteinhaltung von Regeln.",
        'SPONSOR_LOGIN_FAILED_EMAIL' => "Sie haben Ihre Email-Adresse ge&auml;ndert und diese noch nicht best&auml;tigt.",
        'SPONSPOR_COOKIE_SETUP_FAILED' => "Es konnten keine Cookies gesetzt werden. Bitte Sicherheitseinstellungen in Ihrem Browser &uuml;berpr&uuml;fen.",
-       'SPONSOR_ONLY_AREA_ENTERED' => "Sie haben einen Bereich aufgerufen, der nur den Sponsoren vorenthalten ist, die auch bezahlt haben. Bitte kehren Sie zur [&nbsp;<strong><a href=\"{%url=index.php%}\">Eingangsseite</a></strong>&nbsp;] zur&uuml;ck.",
+       'SPONSOR_ONLY_AREA_ENTERED' => "Sie haben einen Bereich aufgerufen, der nur den Sponsoren vorenthalten ist, die auch bezahlt haben. Bitte kehren Sie zur [<strong><a href=\"{%url=index.php%}\">Eingangsseite</a></strong>] zur&uuml;ck.",
        'SPONSOR_ACCOUNT_STATUS_FAILED' => "Unerwarteter Zustand des Scriptes erreicht! Bitte Support benachrichtigen.",
        'SPONSOR_ACCOUNT_IS_CONFIRMED_AGAIN' => "Ihr Sponsorenaccount ist wieder freigegeben! Sie k&ouml;nnen sich nun erneut einloggen.",
 
        'SPONSOR_ACCOUNT_STATUS_FAILED' => "Unerwarteter Zustand des Scriptes erreicht! Bitte Support benachrichtigen.",
        'SPONSOR_ACCOUNT_IS_CONFIRMED_AGAIN' => "Ihr Sponsorenaccount ist wieder freigegeben! Sie k&ouml;nnen sich nun erneut einloggen.",
 
index 85e92f55629bfa04dd5b7ed5bbd28512b0f9ce5b..ed0c9455f070486cadafe95233e25cf28114d5f8 100644 (file)
@@ -54,12 +54,12 @@ addMessages(array(
        'ADMIN_CONFIG_SURFBAR_PAYMENT_MODEL_DYNAMIC' => "Dynamische Werte errechnen.",
        'ADMIN_CONFIG_SURFBAR_DYNAMIC_PERCENT' => "Prozent auf dynamische Verg&uuml;tung/ Verweildauer/Reload-Sperre:",
        'ADMIN_CONFIG_SURFBAR_MAX_ORDER' => "Maximal durch Mitglied in Surfbar buchbare URLs:",
        'ADMIN_CONFIG_SURFBAR_PAYMENT_MODEL_DYNAMIC' => "Dynamische Werte errechnen.",
        'ADMIN_CONFIG_SURFBAR_DYNAMIC_PERCENT' => "Prozent auf dynamische Verg&uuml;tung/ Verweildauer/Reload-Sperre:",
        'ADMIN_CONFIG_SURFBAR_MAX_ORDER' => "Maximal durch Mitglied in Surfbar buchbare URLs:",
-       'ADMIN_CONFIG_SURFBAR_RESTART_TIME' => "Ruhezeit der Surfbar, wenn alle URLs in Reload-Lock sind:&nbsp;",
+       'ADMIN_CONFIG_SURFBAR_RESTART_TIME' => "Ruhezeit der Surfbar, wenn alle URLs in Reload-Lock sind:",
        'ADMIN_CONFIG_SURFBAR_AUTOSTART' => "Surfbar soll nach Ruhezeit automatisch starten?",
        'ADMIN_CONFIG_SURFBAR_STATS_RELOAD' => "Reload-Zeit der Statistik unterhalb der beworbenen Seite:",
        'ADMIN_CONFIG_SURFBAR_PURGE_DELETED' => "Verweildauer gel&ouml;schter URLs in der Datenbank:",
        'ADMIN_CONFIG_SURFBAR_PURGE_MIGRATED' => "Verweildauer migrierter URLs in der Datenbank:",
        'ADMIN_CONFIG_SURFBAR_AUTOSTART' => "Surfbar soll nach Ruhezeit automatisch starten?",
        'ADMIN_CONFIG_SURFBAR_STATS_RELOAD' => "Reload-Zeit der Statistik unterhalb der beworbenen Seite:",
        'ADMIN_CONFIG_SURFBAR_PURGE_DELETED' => "Verweildauer gel&ouml;schter URLs in der Datenbank:",
        'ADMIN_CONFIG_SURFBAR_PURGE_MIGRATED' => "Verweildauer migrierter URLs in der Datenbank:",
-       'ADMIN_CONFIG_SURFBAR_NOTE' => "<strong>Hinweise:</strong>&nbsp;Es wird empfohlen, die Ruhezeit etwas l&auml;nger als die Reload-Sperre einzustellen. Migrierte URLs sind aus Mailbuchungen &uuml;bernommene URLs, die das Mitglied noch best&auml;tigen muss. Werden URLs aus freigeschalteten Mailbuchungen in die Surfbar &quot;migriert&quot; so muss erst das Mitglied der Aufnahme zustimmen. Tut es dies nicht, wird die URL wieder aus der Surfbar entfernt. Eine sofortige Freischaltung ist nicht m&ouml;glich.",
+       'ADMIN_CONFIG_SURFBAR_NOTE' => "<strong>Hinweise:</strong> Es wird empfohlen, die Ruhezeit etwas l&auml;nger als die Reload-Sperre einzustellen. Migrierte URLs sind aus Mailbuchungen &uuml;bernommene URLs, die das Mitglied noch best&auml;tigen muss. Werden URLs aus freigeschalteten Mailbuchungen in die Surfbar &quot;migriert&quot; so muss erst das Mitglied der Aufnahme zustimmen. Tut es dies nicht, wird die URL wieder aus der Surfbar entfernt. Eine sofortige Freischaltung ist nicht m&ouml;glich.",
        'ADMIN_CONFIG_SURFBAR_PAUSE_MODE' => "Auf welche Seite soll umgeleitet werden, wenn das Mitglied alle gebuchten URLs besucht hat? (Wenn sie also im Reload-Lock sind)",
        'ADMIN_CONFIG_SURFBAR_PAUSE_MODE_INTERNAL' => "Auf interne Pausenseite umleiten.",
        'ADMIN_CONFIG_SURFBAR_PAUSE_MODE_EXTERNAL' => "Auf externe Seite umleiten.<br /><span class=\"admin_note\">(Bitte angeben)</span>",
        'ADMIN_CONFIG_SURFBAR_PAUSE_MODE' => "Auf welche Seite soll umgeleitet werden, wenn das Mitglied alle gebuchten URLs besucht hat? (Wenn sie also im Reload-Lock sind)",
        'ADMIN_CONFIG_SURFBAR_PAUSE_MODE_INTERNAL' => "Auf interne Pausenseite umleiten.",
        'ADMIN_CONFIG_SURFBAR_PAUSE_MODE_EXTERNAL' => "Auf externe Seite umleiten.<br /><span class=\"admin_note\">(Bitte angeben)</span>",
index b33bfea63ba7edea3f7d49082ede2fad9a7fb682..11ca2ba09d9984c2cb994c9557d783326e606faf 100644 (file)
@@ -42,6 +42,16 @@ if (!defined('__SECURITY')) {
        die();
 } // END - if
 
        die();
 } // END - if
 
+// Private setter for current network id
+function setCurrentNetworkId ($id) {
+       $GLOBALS['current_network_id'] = bigintval($id);
+}
+
+// Private getter for current network id
+function getCurrentNetworkId () {
+       return $GLOBALS['current_network_id'];
+}
+
 // Handle a (maybe) sent form here
 function doNetworkHandleForm () {
        // Was the form sent?
 // Handle a (maybe) sent form here
 function doNetworkHandleForm () {
        // Was the form sent?
@@ -139,6 +149,9 @@ function getNetworkDataById ($id, $column = '') {
                debug_report_bug('Network id ' . $id . ' is smaller than 1.');
        } // END - if
 
                debug_report_bug('Network id ' . $id . ' is smaller than 1.');
        } // END - if
 
+       // Set current network id
+       setCurrentNetworkId($id);
+
        // Is it cached?
        if (!isset($GLOBALS['network_data'][$id])) {
                // By default we have no data
        // Is it cached?
        if (!isset($GLOBALS['network_data'][$id])) {
                // By default we have no data
@@ -174,6 +187,57 @@ LIMIT 1",
        }
 }
 
        }
 }
 
+// "Getter" for a network's data by provided type id number
+function getNetworkDataByTypeId ($id, $column = '') {
+       // Ids lower one are not accepted
+       if ($id < 1) {
+               // Not good, should be fixed
+               debug_report_bug('Network type id ' . $id . ' is smaller than 1.');
+       } // END - if
+
+       // Set current network id
+       setCurrentNetworkId($id);
+
+       // Is it cached?
+       if (!isset($GLOBALS['network_data'][$id])) {
+               // By default we have no data
+               $GLOBALS['network_data'][$id] = array();
+
+               // Query for the network data
+               $result = SQL_QUERY_ESC("SELECT
+       d.`network_id`, d.`network_short_name`, d.`network_title`, d.`network_reflink`, d.`network_data_seperator`, d.`network_row_seperator`, d.`network_request_type`, d.`network_charset`,
+       t.`network_type_handle`, t.`network_type_api_url`, t.`network_type_click_url`, t.`network_type_banner_url`
+FROM
+       `{?_MYSQL_PREFIX?}_network_data` AS d
+LEFT JOIN
+       `{?_MYSQL_PREFIX?}_network_types` AS t
+ON
+       d.`network_id`=t.`network_id`
+WHERE
+       t.`network_type_id`=%s
+LIMIT 1",
+                       array(bigintval($id)), __FUNCTION__, __LINE__);
+
+               // Do we have an entry?
+               if (SQL_NUMROWS($result) == 1) {
+                       // Then get it
+                       $GLOBALS['network_data'][$id] = SQL_FETCHARRAY($result);
+               } // END - if
+
+               // Free result
+               SQL_FREERESULT($result);
+       } // END - if
+
+       // Return result
+       if (empty($column)) {
+               // Return array
+               return $GLOBALS['network_data'][$id];
+       } else {
+               // Return column
+               return $GLOBALS['network_data'][$id][$column];
+       }
+}
+
 // "Getter" for a network type data by provided id number
 function getNetworkTypeDataById ($id) {
        // Ids lower one are not accepted
 // "Getter" for a network type data by provided id number
 function getNetworkTypeDataById ($id) {
        // Ids lower one are not accepted
@@ -371,6 +435,51 @@ ORDER BY
        return $content;
 }
 
        return $content;
 }
 
+// Generator (somewhat getter) for a list of network types for all types
+function generateAdminDistinctNetworkTypeList () {
+       // Init content
+       $content = '';
+
+       // Query all types of this network
+       $result = SQL_QUERY("SELECT
+       t.`network_type_id`, t.`network_type_handle`, d.`network_title`
+FROM
+       `{?_MYSQL_PREFIX?}_network_types` AS t
+LEFT JOIN
+       `{?_MYSQL_PREFIX?}_network_data` AS d
+ON
+       t.`network_id`=d.`network_id`
+ORDER BY
+       d.`network_short_name` ASC,
+       t.`network_type_handle` ASC", __FILE__, __LINE__);
+
+       // Do we have entries?
+       if (SQL_NUMROWS($result) > 0) {
+               // List all entries
+               $rows = array();
+               while ($row = SQL_FETCHARRAY($result)) {
+                       // Is this valid, then add it
+                       if ((is_array($row)) && (isset($row['network_type_id']))) {
+                               // Add entry
+                               $rows[$row['network_type_id']] = $row;
+                       } // END - if
+               } // END - while
+
+               // Generate the selection box
+               $content = generateSelectionBoxFromArray($rows, 'network_type', 'network_type_id', '', '_title');
+       } else {
+               // Nothing selected
+               $content = loadTemplate('admin_settings_unsaved', false, getMessage('ADMIN_ENTRIES_404'));
+       }
+
+       // Free the result
+       SQL_FREERESULT($result);
+       //* DEBUG: */ die('<pre>'.htmlentities($content).'</pre>');
+
+       // Return content
+       return $content;
+}
+
 // Generator (somewhat getter) for network type options
 function generateNetworkTypeOptions ($id) {
        // Is this an array, then we just came back from edit/delete actions
 // Generator (somewhat getter) for network type options
 function generateNetworkTypeOptions ($id) {
        // Is this an array, then we just came back from edit/delete actions
@@ -451,14 +560,16 @@ function generateNetworkArrayTranslationOptions ($default) {
        if (!isset($GLOBALS['network_array_translation'][$default])) {
                // Generate and cache it
                $GLOBALS['network_array_translation'][$default] = generateOptionList(
        if (!isset($GLOBALS['network_array_translation'][$default])) {
                // Generate and cache it
                $GLOBALS['network_array_translation'][$default] = generateOptionList(
-                       'network_request_params',
-                       'network_param_id',
-                       'request_param_key',
+                       'network_translations',
+                       'network_translation',
+                       'network_translation',
                        $default,
                        '',
                        $default,
                        '',
-                       sprintf("WHERE `network_id`='%s'", bigintval(getRequestParameter('network'))),
+                       sprintf("WHERE `network_type_id`=%s",
+                               bigintval(getRequestParameter('network_type'))
+                       ),
                        $GLOBALS['network_array_translation_disabled'],
                        $GLOBALS['network_array_translation_disabled'],
-                       'ADMIN_NETWORK_REQUEST_PARAMETER_'
+                       'ADMIN_NETWORK_ARRAY_TRANSLATION_'
                );
        } // END - if
 
                );
        } // END - if
 
@@ -1038,12 +1149,15 @@ function doAdminNetworkProcessAddnetworkparamForm () {
 function doExpressionNetwork ($data) {
        // Construct replacer
        $replacer = sprintf(
 function doExpressionNetwork ($data) {
        // Construct replacer
        $replacer = sprintf(
-               "\" . %s(%s, '%s') . \"",
+               "{DQUOTE} . %s(%s, '%s') . {DQUOTE}",
                $data['callback'],
                $data['matches'][4][$data['key']],
                $data['extra_func']
        );
 
                $data['callback'],
                $data['matches'][4][$data['key']],
                $data['extra_func']
        );
 
+       // Replace %network% with the current network id
+       $replacer = str_replace('%network%', getCurrentNetworkId(), $replacer);
+
        // Replace the code
        $code = replaceExpressionCode($data, $replacer);
 
        // Replace the code
        $code = replaceExpressionCode($data, $replacer);
 
@@ -1053,3 +1167,4 @@ function doExpressionNetwork ($data) {
 
 // [EOF]
 ?>
 
 // [EOF]
 ?>
+
index ca86a9b5f88182e50c2ba16fd2ad19bf97755b92..cc9c5fcc660c78acea43ab93ac2221561b3d8c44 100644 (file)
@@ -64,9 +64,9 @@ function alpha ($sortby, $colspan, $return=false) {
                }
 
                if ((($counter / getConfig('user_alpha')) == round($counter / getConfig('user_alpha'))) && ($counter > 0)) {
                }
 
                if ((($counter / getConfig('user_alpha')) == round($counter / getConfig('user_alpha'))) && ($counter > 0)) {
-                       $OUT .= '&nbsp;]<br />[&nbsp;';
+                       $OUT .= ']<br />[';
                } elseif ( $counter != $num ) {
                } elseif ( $counter != $num ) {
-                       $OUT .= '&nbsp;|&nbsp;';
+                       $OUT .= '|';
                }
        } // END - while
 
                }
        } // END - while
 
@@ -112,9 +112,9 @@ function addSortLinks ($letter, $sortby, $colspan, $return=false) {
 
        foreach ($list as $sort => $title) {
                if ($sortby == $sort) {
 
        foreach ($list as $sort => $title) {
                if ($sortby == $sort) {
-                       $OUT .= '<strong>' . $title . '</strong>&nbsp;|&nbsp;';
+                       $OUT .= '<strong>' . $title . '</strong>|';
                } else {
                } else {
-                       $OUT .= '<a href="{%url=modules.php?module=admin&amp;what=list_user&amp;letter=' . $letter . '&amp;sortby=' . $sort.$add . '%}">' . $title . '</a>&nbsp;|&nbsp;';
+                       $OUT .= '<a href="{%url=modules.php?module=admin&amp;what=list_user&amp;letter=' . $letter . '&amp;sortby=' . $sort . $add . '%}">' . $title . '</a>|';
                }
        } // END - foreach
 
                }
        } // END - foreach
 
@@ -173,7 +173,7 @@ function addPageNavigation ($pages, $offset, $showForm, $colspan, $return=false)
                        $OUT .= '</a>';
                }
 
                        $OUT .= '</a>';
                }
 
-               if ($page < $pages) $OUT .= '&nbsp;|&nbsp;';
+               if ($page < $pages) $OUT .= '|';
        } // END - for
 
        // Remember the list
        } // END - for
 
        // Remember the list
index 077763615933134a35ad4c465fb3ac433aa6d6fc..112bf491e070e6073875acf440b95f8e11f1d175 100644 (file)
@@ -6,7 +6,7 @@
  * -------------------------------------------------------------------- *
  * File              : what-list_network_array_translation.php          *
  * -------------------------------------------------------------------- *
  * -------------------------------------------------------------------- *
  * File              : what-list_network_array_translation.php          *
  * -------------------------------------------------------------------- *
- * Short description : List/manage network API query parameters         *
+ * Short description : List/manage network array index translations     *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Verwaltet API-Abfrageparameter                   *
  * -------------------------------------------------------------------- *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Verwaltet API-Abfrageparameter                   *
  * -------------------------------------------------------------------- *
@@ -100,8 +100,11 @@ ORDER BY
                        bigintval(getRequestParameter('network_type'))
                ), __FILE__, __LINE__);
 
                        bigintval(getRequestParameter('network_type'))
                ), __FILE__, __LINE__);
 
+       // Remember the rows
+       $rows = SQL_NUMROWS($result);
+
        // Do we have entries?
        // Do we have entries?
-       if (SQL_NUMROWS($result) > 0) {
+       if ($rows > 0) {
                // List all entries
                $OUT = ''; $SW = 2;
                while ($row = SQL_FETCHARRAY($result)) {
                // List all entries
                $OUT = ''; $SW = 2;
                while ($row = SQL_FETCHARRAY($result)) {
@@ -121,10 +124,10 @@ ORDER BY
 
                // Prepare data for template
                $content = array(
 
                // Prepare data for template
                $content = array(
-                       'rows'            => $OUT,
-                       'network_id'      => bigintval(getRequestParameter('network')),
-                       'network_title'   => $networkData['network_title'],
-                       'network_reflink' => $networkData['network_reflink'],
+                       'rows'              => $OUT,
+                       'network_id'        => bigintval(getRequestParameter('network')),
+                       'network_title'     => $networkData['network_title'],
+                       'network_reflink'   => $networkData['network_reflink'],
                );
 
                // Load main template
                );
 
                // Load main template
@@ -138,7 +141,8 @@ ORDER BY
        SQL_FREERESULT($result);
 
        // Add options list for network type
        SQL_FREERESULT($result);
 
        // Add options list for network type
-       $networkData['type_options'] = generateNetworkTypeOptions(getRequestParameter('network_type_id'));
+       $networkData['translation_index'] = ($rows + 1);
+       $networkData['type_options']      = generateNetworkTypeOptions(getRequestParameter('network_type_id'));
 
        // Add form for adding new array_translation pair
        loadTemplate('admin_add_network_array_translation', false, $networkData);
 
        // Add form for adding new array_translation pair
        loadTemplate('admin_add_network_array_translation', false, $networkData);
diff --git a/inc/modules/admin/what-list_network_translations.php b/inc/modules/admin/what-list_network_translations.php
new file mode 100644 (file)
index 0000000..e88d8f9
--- /dev/null
@@ -0,0 +1,127 @@
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL                                Start: 06/01/2010 *
+ * ===================                          Last change: 06/01/2010 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-list_network_translations.php               *
+ * -------------------------------------------------------------------- *
+ * Short description : List/manage network array translations           *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Verwaltet API-Abfrageparameter                   *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 1794                                                   $ *
+ * $Date:: 2010-05-28 19:55:19 +0200 (Fri, 28 May 2010)               $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: quix0r                                                   $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
+
+// Add description as navigation point
+addMenuDescription('admin', __FILE__);
+
+// These are expert settings!
+if (doVerifyExpertSettings() != 'agreed') {
+       // Abort here
+       return;
+} // END - if
+
+// By default we should display list/add new forms
+$GLOBALS['network_display'] = true;
+
+// Handle form here
+doNetworkHandleForm();
+
+// Display forms?
+if ($GLOBALS['network_display'] === false) {
+       // Abort here
+       return;
+} // END - if
+
+// Do we have a network selected?
+if (isGetRequestParameterSet('network_type')) {
+       // Get network data from given type-id
+       $networkData = getNetworkDataByTypeId(getRequestParameter('network_type'));
+
+       // Init disabled list
+       $GLOBALS['network_translations_disabled'] = array();
+
+       // Load all advert codes for given network
+       $result = SQL_QUERY("SELECT
+       `network_translate_id`, `network_type_id`, `network_translation`
+FROM
+       `{?_MYSQL_PREFIX?}_network_translations`
+ORDER BY
+       `network_translate_id` ASC", __FILE__, __LINE__);
+
+       // Remember the rows
+       $rows = SQL_NUMROWS($result);
+
+       // Do we have entries?
+       if ($rows > 0) {
+               // List all entries
+               $OUT = ''; $SW = 2;
+               while ($row = SQL_FETCHARRAY($result)) {
+                       // Add/translate some data
+                       $row['sw'] = $SW;
+
+                       // Add it to network if the type matches selected
+                       if ($row['network_type_id'] == getRequestParameter('network_type_id')) {
+                               // Matches, then add it for disabling this entry
+                               $GLOBALS['network_translations_disabled'][$row['network_array_index']] = true;
+                       } // END - if
+
+                       // Add row template and switch color
+                       $OUT .= loadTemplate('admin_list_network_translations_row', true, $row);
+                       $SW = 3 - $SW;
+               } // END - while
+
+               // Prepare data for template
+               $content = array(
+                       'rows' => $OUT,
+               );
+
+               // Load main template
+               loadTemplate('admin_list_network_translations', false, $content);
+       } else {
+               // No entries found
+               loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TRANSLATIONS_404', $networkData['network_type_handle']));
+       }
+
+       // Free result
+       SQL_FREERESULT($result);
+
+       // Add form for adding new translations pair
+       loadTemplate('admin_add_network_translations');
+} else {
+       // Generate type-selection box
+       outputHtml(generateAdminDistinctNetworkTypeList());
+}
+
+// [EOF]
+?>
index 00a5e0b55da43c9c39006389faf72aa110ea0b2d..9575dc8b04707d544642ae419abec91537ceae99 100644 (file)
@@ -235,7 +235,7 @@ ORDER BY
                while ($content = SQL_FETCHARRAY($result)) {
                        if ($content['status'] == 'NEW') {
                                // Generate links for direct accepting and rejecting
                while ($content = SQL_FETCHARRAY($result)) {
                        if ($content['status'] == 'NEW') {
                                // Generate links for direct accepting and rejecting
-                               $content['status'] = '<a href="{%url=modules.php?module=admin&amp;what=list_payouts&amp;do=accept&amp;pid=' . $content['id'] . '%}">{--PAYOUT_ACCEPT_PAYOUT--}</a>&nbsp;|&nbsp;<a href="{%url=modules.php?module=admin&amp;what=list_payouts&amp;do=reject&amp;pid=' . $content['id'] . '%}">{--PAYOUT_REJECT_PAYOUT--}</a>';
+                               $content['status'] = '<a href="{%url=modules.php?module=admin&amp;what=list_payouts&amp;do=accept&amp;pid=' . $content['id'] . '%}">{--PAYOUT_ACCEPT_PAYOUT--}</a>|<a href="{%url=modules.php?module=admin&amp;what=list_payouts&amp;do=reject&amp;pid=' . $content['id'] . '%}">{--PAYOUT_REJECT_PAYOUT--}</a>';
                        } else {
                                // Translate status
                                $content['status'] = getMessage('PAYOUT_STATUS_'.strtoupper($content['status']).'');
                        } else {
                                // Translate status
                                $content['status'] = getMessage('PAYOUT_STATUS_'.strtoupper($content['status']).'');
index 0c5ae2edd5e5779e14ef9363289e2e00285b7441..bb1431a7e9c64cc5570c3fc99469103d5bf02ca1 100644 (file)
        <tr>
                <td align="right" width="250">{--ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX--}:</td>
                <td>
        <tr>
                <td align="right" width="250">{--ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX--}:</td>
                <td>
-                       <select name="request_param_key" class="admin_select" size="1">
-                               {%pipe,generateNetworkArrayTranslationOptions%}
-                       </select>
+                       <input type="hidden" name="network_array_index" value="$content[translation_index]" />
+                       <strong>$content[translation_index]</strong>
                </td>
        </tr>
        <tr>
                <td class="bottom" align="right" width="250">{--ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX_TRANSLATION--}:</td>
                <td class="bottom">
                </td>
        </tr>
        <tr>
                <td class="bottom" align="right" width="250">{--ADMIN_NETWORK_ARRAY_TRANSLATION_INDEX_TRANSLATION--}:</td>
                <td class="bottom">
-                       <input type="text" name="index_translation" class="admin_normal" size="10" maxlength="255" />
+                       <select class="admin_select" name="index_translation" size="1">
+                               {%pipe,generateNetworkArrayTranslationOptions%}
+                       </select>
                </td>
        </tr>
        <tr>
                </td>
        </tr>
        <tr>
index 4cedde447066c78f3f929a6c370818976ca8b179..7fcfdb13d8cce1d70421d1964f6618e330755a68 100644 (file)
@@ -5,13 +5,13 @@
 </tr>
 <tr>
   <td align="center" class="switch_sw$content[sw] bottom right" width="100">
 </tr>
 <tr>
   <td align="center" class="switch_sw$content[sw] bottom right" width="100">
-    [&nbsp;<strong><a href="{%url=modules.php?module=admin&amp;what=list_sponsor&amp;id=$content[id]%}" title="{--ADMIN_SPONSOR_DETAILS_LINK_TITLE--}">$content[id]</a></strong>&nbsp;]
+    [<strong><a href="{%url=modules.php?module=admin&amp;what=list_sponsor&amp;id=$content[id]%}" title="{--ADMIN_SPONSOR_DETAILS_LINK_TITLE--}">$content[id]</a></strong>]
   </td>
   <td align="center" class="switch_sw$content[sw] bottom right" width="240" colspan="2">
     <a href="$content[email]">$content[gender] $content[surname] $content[family]</a>
   </td>
   <td align="center" class="switch_sw$content[sw] bottom" width="160">
   </td>
   <td align="center" class="switch_sw$content[sw] bottom right" width="240" colspan="2">
     <a href="$content[email]">$content[gender] $content[surname] $content[family]</a>
   </td>
   <td align="center" class="switch_sw$content[sw] bottom" width="160">
-    [&nbsp;<strong><a href="{%url=modules.php?module=admin&amp;what=edit_sponsor&amp;id=$content[id]&amp;mode=add_points%}" title="{--ADMIN_SPONSOR_ADD_POINTS_LINK_TITLE--}">$content[points]</a></strong>&nbsp;]
+    [<strong><a href="{%url=modules.php?module=admin&amp;what=edit_sponsor&amp;id=$content[id]&amp;mode=add_points%}" title="{--ADMIN_SPONSOR_ADD_POINTS_LINK_TITLE--}">$content[points]</a></strong>]
   </td>
 </tr>
 <tr>
   </td>
 </tr>
 <tr>
@@ -24,7 +24,7 @@
 </tr>
 <tr>
   <td align="center" class="switch_sw$content[sw] bottom right" width="100">
 </tr>
 <tr>
   <td align="center" class="switch_sw$content[sw] bottom right" width="100">
-    [&nbsp;<strong><a href="{%url=modules.php?module=admin&amp;what=lock_sponsor&amp;id=$content[id]%}">$content[status]</a></strong>&nbsp;]
+    [<strong><a href="{%url=modules.php?module=admin&amp;what=lock_sponsor&amp;id=$content[id]%}">$content[status]</a></strong>]
   </td>
   <td align="center" class="switch_sw$content[sw] bottom right" width="120">
     $content[created]
   </td>
   <td align="center" class="switch_sw$content[sw] bottom right" width="120">
     $content[created]
index 535201f76c665043e1c73eb4a9c58b52c5d0e167..59ca0fb01b4742c12d2011d792ca83d9d5563b54 100644 (file)
@@ -3,7 +3,7 @@
                <table border="0" cellspacing="0" cellpadding="0">
                <tr>
                        <td class="admin_pagenav">
                <table border="0" cellspacing="0" cellpadding="0">
                <tr>
                        <td class="admin_pagenav">
-                               [&nbsp;{--USER_PAGENAV--}:&nbsp;$content[list]&nbsp;]
+                               [{--USER_PAGENAV--}:$content[list]]
                        </td>
                </tr>
                </table>
                        </td>
                </tr>
                </table>
index f40a066e99c1c8658697074bad4db585f43b6a8d..d245d39e288e392e8b7c14764bf3058bb86b6271 100644 (file)
@@ -1,5 +1,5 @@
 <tr>
        <td align="center" colspan="2" class="guest_menu_title" id="guest_menu_action_$content[action]">
 <tr>
        <td align="center" colspan="2" class="guest_menu_title" id="guest_menu_action_$content[action]">
-               <strong>:::&nbsp;$content[title]&nbsp;:::</strong>
+               <strong>:::$content[title]:::</strong>
        </td>
 </tr>
        </td>
 </tr>
index 26bbf379161ed4b6c5199fc953e4aecfaa883385..08b162dce2314c43aa2ecdc213816decda14f5d8 100644 (file)
@@ -1,11 +1,14 @@
-<table border="0" cellspacing="0" cellpadding="0" width="440"
-       class="register_header dashed">
+<div align="center">
+<table border="0" cellspacing="0" cellpadding="0" width="440" class="register_header dashed">
        <tr>
                <td width="60%" align="right" height="40" class="register_left">
        <tr>
                <td width="60%" align="right" height="40" class="register_left">
-               <strong>{--MAX_PER_DAY--}:</strong>&nbsp;&nbsp;</td>
-               <td width="40%" class="register_right"><select name="max_mails"
-                       size="1" class="register_select">
-                       $content
-               </select></td>
+                       <strong>{--MAX_PER_DAY--}:</strong>
+               </td>
+               <td width="40%" class="register_right">
+                       <select name="max_mails" size="1" class="register_select">
+                               $content
+                       </select>
+               </td>
        </tr>
 </table>
        </tr>
 </table>
+</div>
index 8a9c5a47f70b1c7726cdc43b2d3c46e8deee87d7..2796510eab2f8b37e039728f8fc36c07063ecb8d 100644 (file)
@@ -3,23 +3,23 @@
 <form accept-charset="utf-8" action="{%url=modules.php?module=index&amp;what=sponsor_login&amp;mode=activate%}" method="post">
 <table border="0" cellspacing="0" cellpadding="0" class="guest_table dashed" width="400">
 <tr>
 <form accept-charset="utf-8" action="{%url=modules.php?module=index&amp;what=sponsor_login&amp;mode=activate%}" method="post">
 <table border="0" cellspacing="0" cellpadding="0" class="guest_table dashed" width="400">
 <tr>
-  <td class="guest_title bottom" align="center" colspan="2">
-    <strong>{--SPONSOR_SEND_ACTIVATION_LINK--}</strong>
-  </td>
+       <td class="guest_title bottom" align="center" colspan="2">
+               <strong>{--SPONSOR_SEND_ACTIVATION_LINK--}</strong>
+       </td>
 </tr>
 <tr>
 </tr>
 <tr>
-  <td class="bottom" align="right" style="padding-right: 10px">
-    {--SPONSOR_ENTER_EMAIL--}:
-  </td>
-  <td class="bottom">
-    <input type="text" name="email" class="guest_normal" size="20" maxlength="255" />
-  </td>
+       <td class="bottom" align="right" style="padding-right: 10px">
+               {--SPONSOR_ENTER_EMAIL--}:
+       </td>
+       <td class="bottom">
+               <input type="text" name="email" class="guest_normal" size="20" maxlength="255" />
+       </td>
 </tr>
 <tr>
 </tr>
 <tr>
-  <td colspan="2" align="center" class="guest_footer">
-    <input type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />
-    <input type="submit" name="ok" class="guest_submit" value="{--SPONSOR_ACTIVATION_SUBMIT--}" />
-  </td>
+       <td colspan="2" align="center" class="guest_footer">
+               <input type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />
+               <input type="submit" name="ok" class="guest_submit" value="{--SPONSOR_ACTIVATION_SUBMIT--}" />
+       </td>
 </tr>
 </table>
 </form>
 </tr>
 </table>
 </form>
@@ -28,7 +28,7 @@
 
 <div class="para">
 <div align="center">
 
 <div class="para">
 <div align="center">
-  <div class="guest_note">{--SPONSOR_HOWTO_GET_ACTIVATION_LINK--}</div>
+       <div class="guest_note">{--SPONSOR_HOWTO_GET_ACTIVATION_LINK--}</div>
 </div>
 </div>
 
 </div>
 </div>
 
@@ -36,9 +36,9 @@
 <div align="center">
 <table border="0" cellspacing="0" cellpadding="0" class="guest_table" width="100%">
 <tr>
 <div align="center">
 <table border="0" cellspacing="0" cellpadding="0" class="guest_table" width="100%">
 <tr>
-  <td align="center">
-    &raquo;&raquo;&nbsp;<a href="{%url=modules.php?module=index&amp;what=sponsor_login%}">{--SPONSOR_BACK_TO_LOGIN--}</a><br />
-  </td>
+       <td align="center">
+               &raquo;&raquo;<a href="{%url=modules.php?module=index&amp;what=sponsor_login%}">{--SPONSOR_BACK_TO_LOGIN--}</a>
+       </td>
 </tr>
 </table>
 </div>
 </tr>
 </table>
 </div>
index fb8e3dc73601030a18243d057ef09bb8e3e73f21..f1481fe93e698ceda2f92491c27e4bbfc388ef83 100644 (file)
@@ -25,7 +25,7 @@
 </tr>
 <tr>
   <td align="right" width="200">
 </tr>
 <tr>
   <td align="right" width="200">
-    {--SPONSOR_ENTER_COMPANY_TITLE--}:&nbsp;
+    {--SPONSOR_ENTER_COMPANY_TITLE--}:
   </td>
   <td width="300">
     <input type="text" name="company" class="guest_normal" size="20" maxlength="255" value="$content[company]" />
   </td>
   <td width="300">
     <input type="text" name="company" class="guest_normal" size="20" maxlength="255" value="$content[company]" />
@@ -33,7 +33,7 @@
 </tr>
 <tr>
   <td align="right">
 </tr>
 <tr>
   <td align="right">
-    {--SPONSOR_ENTER_COMPANY_POSITION--}:&nbsp;
+    {--SPONSOR_ENTER_COMPANY_POSITION--}:
   </td>
   <td>
     <input type="text" name="position" class="guest_normal" size="20" maxlength="255" value="$content[position]" />
   </td>
   <td>
     <input type="text" name="position" class="guest_normal" size="20" maxlength="255" value="$content[position]" />
@@ -41,7 +41,7 @@
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_TAX_IDENT--}:&nbsp;
+    {--SPONSOR_ENTER_TAX_IDENT--}:
   </td>
   <td>
     <input type="text" name="tax_ident" class="guest_normal" size="20" maxlength="255" value="$content[tax_ident]" />
   </td>
   <td>
     <input type="text" name="tax_ident" class="guest_normal" size="20" maxlength="255" value="$content[tax_ident]" />
@@ -54,7 +54,7 @@
 </tr>
 <tr>
   <td align="right">
 </tr>
 <tr>
   <td align="right">
-    {--GUEST_GENDER--}:&nbsp;
+    {--GUEST_GENDER--}:
   </td>
   <td>
     <select name="gender" class="guest_select" size="1">
   </td>
   <td>
     <select name="gender" class="guest_select" size="1">
@@ -66,7 +66,7 @@
 </tr>
 <tr>
   <td align="right">
 </tr>
 <tr>
   <td align="right">
-    {--GUEST_SURNAME--}:&nbsp;
+    {--GUEST_SURNAME--}:
   </td>
   <td>
     <input type="text" name="surname" class="guest_normal" size="20" maxlength="255" value="$content[surname]" />
   </td>
   <td>
     <input type="text" name="surname" class="guest_normal" size="20" maxlength="255" value="$content[surname]" />
@@ -74,7 +74,7 @@
 </tr>
 <tr>
   <td align="right">
 </tr>
 <tr>
   <td align="right">
-    {--GUEST_FAMILY--}:&nbsp;
+    {--GUEST_FAMILY--}:
   </td>
   <td>
     <input type="text" name="family" class="guest_normal" size="20" maxlength="255" value="$content[family]" />
   </td>
   <td>
     <input type="text" name="family" class="guest_normal" size="20" maxlength="255" value="$content[family]" />
@@ -87,7 +87,7 @@
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_STREET_NR1--}:&nbsp;
+    {--SPONSOR_ENTER_STREET_NR1--}:
   </td>
   <td>
     <input type="text" name="street_nr1" class="guest_normal" size="20" maxlength="255" value="$content[street_nr1]" />
   </td>
   <td>
     <input type="text" name="street_nr1" class="guest_normal" size="20" maxlength="255" value="$content[street_nr1]" />
@@ -95,7 +95,7 @@
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_STREET_NR2--}:&nbsp;
+    {--SPONSOR_ENTER_STREET_NR2--}:
   </td>
   <td>
     <input type="text" name="street_nr2" class="guest_normal" size="20" maxlength="255" value="$content[street_nr2]" />
   </td>
   <td>
     <input type="text" name="street_nr2" class="guest_normal" size="20" maxlength="255" value="$content[street_nr2]" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_CNTRY_ZIP_CITY--}:&nbsp;
+    {--SPONSOR_ENTER_CNTRY_ZIP_CITY--}:
   </td>
   <td>
     <input type="text" name="country" class="guest_normal" size="2" maxlength="2" value="$content[country]" />-<input type="text" name="zip" class="guest_normal" size="5" maxlength="6" value="$content[zip]" />
   </td>
   <td>
     <input type="text" name="country" class="guest_normal" size="2" maxlength="2" value="$content[country]" />-<input type="text" name="zip" class="guest_normal" size="5" maxlength="6" value="$content[zip]" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_PHONE--}:&nbsp;
+    {--SPONSOR_ENTER_PHONE--}:
   </td>
   <td>
     <input type="text" name="phone" class="guest_normal" size="20" maxlength="255" value="$content[phone]" />
   </td>
   <td>
     <input type="text" name="phone" class="guest_normal" size="20" maxlength="255" value="$content[phone]" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_FAX--}:&nbsp;
+    {--SPONSOR_ENTER_FAX--}:
   </td>
   <td>
     <input type="text" name="fax" class="guest_normal" size="20" maxlength="255" value="$content[fax]" />
   </td>
   <td>
     <input type="text" name="fax" class="guest_normal" size="20" maxlength="255" value="$content[fax]" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_CELL--}:&nbsp;
+    {--SPONSOR_ENTER_CELL--}:
   </td>
   <td>
     <input type="text" name="cell" class="guest_normal" size="20" maxlength="255" value="$content[cell]" />
   </td>
   <td>
     <input type="text" name="cell" class="guest_normal" size="20" maxlength="255" value="$content[cell]" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_EMAIL--}:&nbsp;
+    {--SPONSOR_ENTER_EMAIL--}:
   </td>
   <td>
     <input type="text" name="email" class="guest_normal" size="20" maxlength="255" value="$content[email]" />
   </td>
   <td>
     <input type="text" name="email" class="guest_normal" size="20" maxlength="255" value="$content[email]" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_URL--}:&nbsp;
+    {--SPONSOR_ENTER_URL--}:
   </td>
   <td>
     <input type="text" name="url" class="guest_normal" size="20" maxlength="255" value="$content[url]" />
   </td>
   <td>
     <input type="text" name="url" class="guest_normal" size="20" maxlength="255" value="$content[url]" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_ENTER_PASSWORDS--}:&nbsp;
+    {--SPONSOR_ENTER_PASSWORDS--}:
   </td>
   <td>
     <input type="password" name="pass1" class="guest_normal" size="10" maxlength="255" />
   </td>
   <td>
     <input type="password" name="pass1" class="guest_normal" size="10" maxlength="255" />
 </tr>
 <tr>
   <td align="right" valign="top">
 </tr>
 <tr>
   <td align="right" valign="top">
-    {--SPONSOR_REFID_WAS--}:&nbsp;
+    {--SPONSOR_REFID_WAS--}:
   </td>
   <td>
     <strong>$content[refid]</strong>
   </td>
   <td>
     <strong>$content[refid]</strong>
 </tr>
 <tr>
   <td align="right">
 </tr>
 <tr>
   <td align="right">
-    {--GUEST_SPONSOR_RECEIVE_WARNINGS--}&nbsp;
+    {--GUEST_SPONSOR_RECEIVE_WARNINGS--}
   </td>
   <td>
     <select name="receive_warnings" class="guest_select" size="1">
   </td>
   <td>
     <select name="receive_warnings" class="guest_select" size="1">
 </tr>
 <tr>
   <td align="right">
 </tr>
 <tr>
   <td align="right">
-    {--SPONSOR_WARNING_INTERVAL--}:&nbsp;
+    {--SPONSOR_WARNING_INTERVAL--}:
   </td>
   <td>
     <select name="warning_interval" class="guest_select" size="1">
   </td>
   <td>
     <select name="warning_interval" class="guest_select" size="1">
index d4952059c42b30d12a34da6c2fb422e859e3ee2d..5bc2be083f76157978c9214962215ac4a478d434 100644 (file)
@@ -18,7 +18,7 @@
        <tr>
                <td align="center" height="26%">
                        <div class="big">
        <tr>
                <td align="center" height="26%">
                        <div class="big">
-                               [&nbsp;<a target="_parent" href="{%url=modules.php?module=index%}">Weiter...</a>&nbsp;]
+                               [<a target="_parent" href="{%url=modules.php?module=index%}">Weiter zur Hauptseite von {?MAIN_TITLE?}...</a>]
                        </div>
                </td>
        </tr>
                        </div>
                </td>
        </tr>
index 61025f7adc90e56fd9c8f16ed7258abd85172325..4234cf4a4bd2db4f8287aded95db457e675d36a1 100644 (file)
@@ -1,33 +1,33 @@
 var interval  = null;
 var interval  = null;
-var counter   = "$content[restart]";
+var countDown   = "$content[restart]";
 var timer     = document.getElementById("surfbar_counter");
 var buttonDiv = document.getElementById("surfbar_button");
 
 var timer     = document.getElementById("surfbar_counter");
 var buttonDiv = document.getElementById("surfbar_button");
 
-function Restart () {
+function restart () {
        this.location.reload();
 }
 
        this.location.reload();
 }
 
-function ShowButton () {
+function showButton () {
        buttonDiv.innerHTML = "<form accept-charset='utf-8' action='{?URL?}/surfbar.php' target='_self' method='GET'><input type='hidden' name='frame' value='top' /><input type='submit' id='member_submit' value='Surfbar erneut starten' /></form>";
 }
 
        buttonDiv.innerHTML = "<form accept-charset='utf-8' action='{?URL?}/surfbar.php' target='_self' method='GET'><input type='hidden' name='frame' value='top' /><input type='submit' id='member_submit' value='Surfbar erneut starten' /></form>";
 }
 
-function Counter () {
-       if (counter == 0) {
+function counter () {
+       if (countDown == 0) {
                if ($content[autostart] == true) {
                if ($content[autostart] == true) {
-                       Restart();
+                       restart();
                } else {
                } else {
-                       ShowButton();
+                       showButton();
                }
                window.clearInterval(interval);
        } else {
                }
                window.clearInterval(interval);
        } else {
-               counter--;
-               timer.innerHTML = counter;
+               countDown--;
+               timer.innerHTML = countDown;
        }
 }
 
        }
 }
 
-function Init () {
-       interval = window.setInterval("Counter()", 1000);
+function init () {
+       interval = window.setInterval("counter()", 1000);
        timer.innerHTML = "$content[restart]";
 }
 
        timer.innerHTML = "$content[restart]";
 }
 
-window.setTimeout("Init()", 500);
+window.setTimeout("init()", 500);
index 85700c74eba1ea5a43a0a9e42def8d117e641187..e2eac34609c9b3a44498c5d34e0079432bae8450 100644 (file)
@@ -1,9 +1,11 @@
-<big><strong>D&nbsp;E&nbsp;R&nbsp;E&nbsp;F&nbsp;E&nbsp;R&nbsp;R&nbsp;E&nbsp;R&nbsp;&nbsp;-&nbsp;&nbsp;{?MAIN_TITLE?}</strong></big><br />
-<br />
-<br />
-<br />
-<br />
-{--LOADER_NOT_WORKING--} [<a href="$content">{--LOADER_CLICK_HERE--}</a>]
+<div class="para">
+       <big><strong>DEREFERRER-{?MAIN_TITLE?}</strong></big>
+</div>
+
+<div class="para">
+       {--LOADER_NOT_WORKING--}
+       [<a href="$content">{--LOADER_CLICK_HERE--}</a>]
+</div>
 
 <script type="text/javascript">
 <!--
 
 <script type="text/javascript">
 <!--
index 84f9d767ae6ee7342042fc8cba5aab0ded9ce96c..99f06f341ef76ad5a03c28acf0ba746919249593 100644 (file)
@@ -1,19 +1,19 @@
 <script type="text/javascript">
 <!--
 <script type="text/javascript">
 <!--
-var Timer = "$content[time]";
+var timer = "$content[time]";
 
 
-function Init() {
-       var Counter = window.setInterval("StartCounter()", 1000);
+function init() {
+       var Counter = window.setInterval("startCounter()", 1000);
 }
 
 }
 
-function StartCounter() {
-       if (Timer < 1) {
+function startCounter() {
+       if (timer < 1) {
                return false;
        }
 
                return false;
        }
 
-       Timer--;
-       document.confirm.counter.value = Timer;
-       if (Timer == 0) {
+       timer--;
+       document.confirm.counter.value = timer;
+       if (timer == 0) {
                document.location.href = '{%url,js=mailid_top.php?userid=$content[userid]&$content[type]=$content[data]&mode=confirm&code=$content[rand]%}';
                clearInterval(Counter);
        }
                document.location.href = '{%url,js=mailid_top.php?userid=$content[userid]&$content[type]=$content[data]&mode=confirm&code=$content[rand]%}';
                clearInterval(Counter);
        }
@@ -44,7 +44,7 @@ function StartCounter() {
 </table>
 <script type="text/javascript">
 <!--
 </table>
 <script type="text/javascript">
 <!--
-document.confirm.counter.value = Timer;
-Init();
+document.confirm.counter.value = timer;
+init();
 //-->
 </script>
 //-->
 </script>
index 0a17e6983107fd6e3a3f0138aced6274bc7677f2..f4766b77b5ca1590532f2f41a22303b023ee3492 100644 (file)
@@ -4,6 +4,7 @@
        </div>
 
        <div class="para">
        </div>
 
        <div class="para">
-               <strong>&middot;</strong>&nbsp;$content[value]
+               <strong>&middot;</strong>
+               $content[value]
        </div>
 </div>
        </div>
 </div>
index 0fee2b9b3f130b1450857a71291c9ae4112be5b9..21c51343bf3b6ac7e54a6c97b51bda5612601318 100644 (file)
@@ -2,7 +2,7 @@
 <form accept-charset="utf-8" action="{?URL?}/modules.php" method="get">
 <input type="hidden" name="module" value="$content[module]" />
 <input type="hidden" name="what" value="$content[what]" />
 <form accept-charset="utf-8" action="{?URL?}/modules.php" method="get">
 <input type="hidden" name="module" value="$content[module]" />
 <input type="hidden" name="what" value="$content[what]" />
-<input type="hidden" name="network" value="[%network%]" />
+<input type="hidden" name="network" value="{%network,getNetworkDataById,network_id=%network%%}" />
 <div class="admin_table dashed">
        <div class="admin_title bottom">
                <div>
 <div class="admin_table dashed">
        <div class="admin_title bottom">
                <div>
@@ -10,9 +10,9 @@
                </div>
 
                <div class="tiny">
                </div>
 
                <div class="tiny">
-                       (<a href="{%network,getNetworkDataById,network_reflink=[%network%]%}"
-                        title="{%network,getNetworkDataById,network_title=[%network%]%}"
-                        target="_blank">{%network,getNetworkDataById,network_title=[%network%]%}</a>)
+                       (<a href="{%network,getNetworkDataById,network_reflink=%network%%}"
+                        title="{%network,getNetworkDataById,network_title=%network%%}"
+                        target="_blank">{%network,getNetworkDataById,network_title=%network%%}</a>)
                </div>
        </div>
 
                </div>
        </div>
 
diff --git a/templates/de/html/select/select_network_type_title_box.tpl b/templates/de/html/select/select_network_type_title_box.tpl
new file mode 100644 (file)
index 0000000..f6fced3
--- /dev/null
@@ -0,0 +1,21 @@
+<div align="center">
+<form accept-charset="utf-8" action="{?URL?}/modules.php" method="get">
+<input type="hidden" name="module" value="$content[module]" />
+<input type="hidden" name="what" value="$content[what]" />
+<div class="admin_table dashed">
+       <div class="admin_title bottom">
+               <div>
+                       <strong>{--ADMIN_NETWORK_TYPE_SELECT_TITLE--}</strong>
+               </div>
+       </div>
+
+       <div class="bottom">
+               $content[selection_box]
+       </div>
+
+       <div class="admin_footer">
+               <input type="submit" class="admin_submit" value="{--ADMIN_NETWORK_TYPE_CHOOSE--}" />
+       </div>
+</div>
+</form>
+</div>
diff --git a/templates/de/html/select/select_network_type_title_option.tpl b/templates/de/html/select/select_network_type_title_option.tpl
new file mode 100644 (file)
index 0000000..4ecc3ea
--- /dev/null
@@ -0,0 +1 @@
+<option value="$content[network_type_id]">$content[network_type_handle] ($content[network_title])</option>
index 1143e3c8c593eca026030715e9c6f34a8aadc565..9cb95a30167d40bfec2dd2ac13f23d351846cb1d 100644 (file)
@@ -1,9 +1,11 @@
 <table border="0" cellspacing="0" cellpadding="0" width="300" class="member_table">
 <tr>
        <td align="center">
 <table border="0" cellspacing="0" cellpadding="0" width="300" class="member_table">
 <tr>
        <td align="center">
-               {--BONUS_SHOW_YOU_HAVE_CONFIRMED--} <strong class="nobr">$content[yr_tmark]</strong>
+               {--BONUS_SHOW_YOU_HAVE_CONFIRMED--}
+               <strong class="nobr">$content[yr_tmark]</strong>
                {--_ON--} <strong>$content[yr_level].</strong>
                {--_ON--} <strong>$content[yr_level].</strong>
-               {--BONUS_SHOW_CONFIRMED_BONUS_IS--}:&nbsp;<strong class="nobr">$content[yr_points] {?POINTS?}</strong>
+               {--BONUS_SHOW_CONFIRMED_BONUS_IS--}:
+               <strong class="nobr">$content[yr_points] {?POINTS?}</strong>
        </td>
 </tr>
 </table>
        </td>
 </tr>
 </table>
index e36d026207ef0399fbd6afb0384be2d53e5f5827..e9fffa08802ef62af4bf3f5699bf1de900967362 100644 (file)
@@ -1,16 +1,20 @@
 <div align="center">
 <ul class="show_timings_block">
        <li class="show_timings_column" style="margin-left: 2px"><span class="show_timings_column">
 <div align="center">
 <ul class="show_timings_block">
        <li class="show_timings_column" style="margin-left: 2px"><span class="show_timings_column">
-               {--SHOW_TIMINGS_RUNTIME--}&nbsp;<span class="show_timings_data">$content[run_time]</span>&nbsp;{--SHOW_TIMINGS_SECS--}
+               {--SHOW_TIMINGS_RUNTIME--}
+               <span class="show_timings_data">$content[run_time] {--SHOW_TIMINGS_SECS--}</span>
        </span></li>
        <li class="show_timings_column" style="margin-left: 2px"><span class="show_timings_column">
        </span></li>
        <li class="show_timings_column" style="margin-left: 2px"><span class="show_timings_column">
-               {--SHOW_TIMINGS_SQL_QUERIES--}&nbsp;<span class="show_timings_data">{?sql_count?}</span>
+               {--SHOW_TIMINGS_SQL_QUERIES--}
+               <span class="show_timings_data">{?sql_count?}</span>
        </span></li>
        <li class="show_timings_column" style="margin-left: 2px"><span class="show_timings_column">
        </span></li>
        <li class="show_timings_column" style="margin-left: 2px"><span class="show_timings_column">
-               {--SHOW_TIMINGS_SQL_TIME--}&nbsp;<span class="show_timings_data">$content[sql_time] ms</span>
+               {--SHOW_TIMINGS_SQL_TIME--}
+               <span class="show_timings_data">$content[sql_time] ms</span>
        </span></li>
        <li class="show_timings_column" style="margin-right: 2px"><span class="show_timings_column">
        </span></li>
        <li class="show_timings_column" style="margin-right: 2px"><span class="show_timings_column">
-               {--SHOW_TIMINGS_NUM_TEMPLATES--}&nbsp;<span class="show_timings_data">{?num_templates?}</span>
+               {--SHOW_TIMINGS_NUM_TEMPLATES--}
+               <span class="show_timings_data">{?num_templates?}</span>
        </span></li>
 </ul>
 </div>
        </span></li>
 </ul>
 </div>
index 98dbe03017606aa4dee8dcd74c7f5f721c11e082..58f849638f569290349c61dae801456904f26fba 100644 (file)
@@ -8,26 +8,26 @@
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_COMPANY_TITLE--}:&nbsp;
+    {--SPONSOR_ENTER_COMPANY_TITLE--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="company" class="guest_normal" size="20" maxlength="255" value="{%sponsor,company=$userid%}" />
+    <input type="text" name="company" class="guest_normal" size="20" maxlength="255" value="{%sponsor,company=$userid%}" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_COMPANY_POSITION--}:&nbsp;
+    {--SPONSOR_ENTER_COMPANY_POSITION--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="position" class="guest_normal" size="20" maxlength="255" value="{%sponsor,position=$userid%}" />
+    <input type="text" name="position" class="guest_normal" size="20" maxlength="255" value="{%sponsor,position=$userid%}" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_TAX_IDENT--}:&nbsp;
+    {--SPONSOR_ENTER_TAX_IDENT--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="tax_ident" class="guest_normal" size="20" maxlength="255" value="{%sponsor,tax_ident=$userid%}" />
+    <input type="text" name="tax_ident" class="guest_normal" size="20" maxlength="255" value="{%sponsor,tax_ident=$userid%}" />
   </td>
 </tr>
 <tr>
   </td>
 </tr>
 <tr>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--GUEST_GENDER--}:&nbsp;
+    {--GUEST_GENDER--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<select name="gender" class="guest_select" size="1">
+    <select name="gender" class="guest_select" size="1">
       <option value="M"$content[gender_m]>{--GENDER_M--}</option>
       <option value="F"$content[gender_f]>{--GENDER_F--}</option>
       <option value="C"$content[gender_c]>{--GENDER_C--}</option>
       <option value="M"$content[gender_m]>{--GENDER_M--}</option>
       <option value="F"$content[gender_f]>{--GENDER_F--}</option>
       <option value="C"$content[gender_c]>{--GENDER_C--}</option>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--GUEST_SURNAME--}:&nbsp;
+    {--GUEST_SURNAME--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="surname" class="guest_normal" size="20" maxlength="255" value="{%sponsor,surname=$userid%}" />
+    <input type="text" name="surname" class="guest_normal" size="20" maxlength="255" value="{%sponsor,surname=$userid%}" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--GUEST_FAMILY--}:&nbsp;
+    {--GUEST_FAMILY--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="family" class="guest_normal" size="20" maxlength="255" value="{%sponsor,family=$userid%}" />
+    <input type="text" name="family" class="guest_normal" size="20" maxlength="255" value="{%sponsor,family=$userid%}" />
   </td>
 </tr>
 <tr>
   </td>
 </tr>
 <tr>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_STREET_NR1--}:&nbsp;
+    {--SPONSOR_ENTER_STREET_NR1--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="street_nr1" class="guest_normal" size="20" maxlength="255" value="{%sponsor,street_nr1=$userid%}" />
+    <input type="text" name="street_nr1" class="guest_normal" size="20" maxlength="255" value="{%sponsor,street_nr1=$userid%}" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_STREET_NR2--}:&nbsp;
+    {--SPONSOR_ENTER_STREET_NR2--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="street_nr2" class="guest_normal" size="20" maxlength="255" value="{%sponsor,street_nr2=$userid%}" />
+    <input type="text" name="street_nr2" class="guest_normal" size="20" maxlength="255" value="{%sponsor,street_nr2=$userid%}" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_CNTRY_ZIP_CITY--}:&nbsp;
+    {--SPONSOR_ENTER_CNTRY_ZIP_CITY--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="country" class="guest_normal" size="2" maxlength="2" value="{%sponsor,county,determineCountry=$userid%}" />-<input type="text" name="zip" class="guest_normal" size="5" maxlength="6" value="{%sponsor,zip,bigintval=$userid%}" />
+    <input type="text" name="country" class="guest_normal" size="2" maxlength="2" value="{%sponsor,county,determineCountry=$userid%}" />-<input type="text" name="zip" class="guest_normal" size="5" maxlength="6" value="{%sponsor,zip,bigintval=$userid%}" />
     <input type="text" name="city" class="guest_normal" size="10" maxlength="255" value="{%sponsor,city=$userid%}" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
     <input type="text" name="city" class="guest_normal" size="10" maxlength="255" value="{%sponsor,city=$userid%}" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_PHONE--}:&nbsp;
+    {--SPONSOR_ENTER_PHONE--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="phone" class="guest_normal" size="20" maxlength="255" value="$content[phone]" />
+    <input type="text" name="phone" class="guest_normal" size="20" maxlength="255" value="$content[phone]" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_FAX--}:&nbsp;
+    {--SPONSOR_ENTER_FAX--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="fax" class="guest_normal" size="20" maxlength="255" value="$content[fax]" />
+    <input type="text" name="fax" class="guest_normal" size="20" maxlength="255" value="$content[fax]" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_CELL--}:&nbsp;
+    {--SPONSOR_ENTER_CELL--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="cell" class="guest_normal" size="20" maxlength="255" value="$content[cell]" />
+    <input type="text" name="cell" class="guest_normal" size="20" maxlength="255" value="$content[cell]" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_EMAIL--}:&nbsp;
+    {--SPONSOR_ENTER_EMAIL--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="email" class="guest_normal" size="20" maxlength="255" value="$content[email]" />
+    <input type="text" name="email" class="guest_normal" size="20" maxlength="255" value="$content[email]" />
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_URL--}:&nbsp;
+    {--SPONSOR_ENTER_URL--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="text" name="url" class="guest_normal" size="20" maxlength="255" value="$content[url]" />
+    <input type="text" name="url" class="guest_normal" size="20" maxlength="255" value="$content[url]" />
   </td>
 </tr>
 <tr>
   </td>
 </tr>
 <tr>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_PASSWORD--}:&nbsp;
+    {--SPONSOR_ENTER_PASSWORD--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="password" name="pass_old" class="guest_normal" size="10" maxlength="255" />
+    <input type="password" name="pass_old" class="guest_normal" size="10" maxlength="255" />
   </td>
 </tr>
 <tr>
   </td>
 </tr>
 <tr>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_ENTER_PASSWORDS--}:&nbsp;
+    {--SPONSOR_ENTER_PASSWORDS--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="password" name="pass1" class="guest_normal" size="10" maxlength="255" />
+    <input type="password" name="pass1" class="guest_normal" size="10" maxlength="255" />
     <input type="password" name="pass2" class="guest_normal" size="10" maxlength="255" />
   </td>
 </tr>
     <input type="password" name="pass2" class="guest_normal" size="10" maxlength="255" />
   </td>
 </tr>
index 3407a066c5fce5374295a8215e25203dd8be9a3b..f1025e48921136472b4debf7d9a5cf157c09325c 100644 (file)
@@ -8,26 +8,26 @@
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_POINTS_AMOUNT--}:&nbsp;
+    {--SPONSOR_POINTS_AMOUNT--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;$content[points_amount] {?POINTS?}
+    $content[points_amount] {?POINTS?}
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_POINTS_USED--}:&nbsp;
+    {--SPONSOR_POINTS_USED--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;$content[points_used] {?POINTS?}
+    $content[points_used] {?POINTS?}
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
   </td>
 </tr>
 <tr>
   <td class="bottom right" align="right" height="27">
-    {--SPONSOR_POINTS_TOTAL--}:&nbsp;
+    {--SPONSOR_POINTS_TOTAL--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;$content[points_total] {?POINTS?}
+    $content[points_total] {?POINTS?}
   </td>
 </tr>
 <tr>
   </td>
 </tr>
 <tr>
index 6c6e9d0cc2731fecd37ff888c8ceb6920674a44f..6fd18dc89cc2ac486b9ea5373368fda0ec4502b4 100644 (file)
@@ -1,2 +1,2 @@
 <!-- Werbebanner oder was auch immer? -->
 <!-- Werbebanner oder was auch immer? -->
-&nbsp;
+
index 5f965992e2dbece8860d910a3dd7df1aa16e5a5f..b3ac13cf053751967bfd60079e43c30cefc9b7c7 100644 (file)
 </tr>
 <tr>
   <td class="bottom right" align="right" height="32">
 </tr>
 <tr>
   <td class="bottom right" align="right" height="32">
-    {--SPONSOR_ENTER_PASSWORD--}:&nbsp;
+    {--SPONSOR_ENTER_PASSWORD--}:
   </td>
   <td class="bottom">
   </td>
   <td class="bottom">
-    &nbsp;<input type="password" name="password" class="guest_normal" size="10" maxlength="255" />
+    <input type="password" name="password" class="guest_normal" size="10" maxlength="255" />
   </td>
 </tr>
 <tr>
   </td>
 </tr>
 <tr>
index df7e2321dc5a9a55bc5675ed3da23600c52cb413..ce80817c02c3ba277eb053e213abdb3ba2a55676 100644 (file)
@@ -1,23 +1,32 @@
+<div align="center">
 <table border="0" cellspacing="0" cellpadding="0" width="100%" id="surfbar_table">
 <tr>
        <td id="surfbar_td">
 <table border="0" cellspacing="0" cellpadding="0" width="100%" id="surfbar_table">
 <tr>
        <td id="surfbar_td">
-               &raquo;<span id="surfbar_points">$content[xxx]=$content[xxx]&nbsp; {?POINTS?}</span> in
-               <span id="surfbar_counter">$content[xxx]</span>&nbsp;<span
-                id="surfbar_counter_word">Sekunden</span>&laquo;&nbsp;&raquo;<span
-                id="surfbar_reload">X</span> von <span
-                id="surfbar_max">X</span> im Reload&laquo;<br />
+               <div>
+               &raquo;<span id="surfbar_points">$content[xxx]=$content[xxx] {?POINTS?}</span> in
+               <span id="surfbar_counter">$content[xxx]</span>
+               <span id="surfbar_counter_word">Sekunden</span>&laquo;
+               &raquo;<span id="surfbar_reload">X</span> von
+               <span id="surfbar_max">X</span> im Reload&laquo;
+               </div>
 
 
+               <div>
                &raquo;<a href="$content[url]" target="_blank">Aktuelle Seite in neuem
                &raquo;<a href="$content[url]" target="_blank">Aktuelle Seite in neuem
-               Fenster &ouml;ffnen</a>&laquo;&nbsp;<span id="surfbar_navi">[<a
-                href="#" onclick="return StartStopCounter();" id="start">Anhalten</a>|<a
-                target="_parent" href="{%url=login.php%}">Loginbereich</a>|<a
-                target="_parent" href="{%url=modules.php?module=login&amp;what=logout%}">Ausloggen</a>|<a
-                href="javascript:window.close()">Schliessen</a>]</span><br />
+               Fenster &ouml;ffnen</a>&laquo;
+               <span id="surfbar_navi">[<a href="#" onclick="return startStopCounter();"
+                id="start">Anhalten</a>|<a target="_parent"
+                href="{%url=login.php%}">Loginbereich</a>|<a target="_parent"
+                href="{%url=modules.php?module=login&amp;what=logout%}">Ausloggen</a>|<a
+                href="javascript:window.close()">Schliessen</a>]</span>
+               </div>
 
 
+               <div>
                &raquo;{?MAIN_TITLE?} ist f&uuml;r den Inhalt nicht verantwortlich!&laquo;
                &raquo;{?MAIN_TITLE?} ist f&uuml;r den Inhalt nicht verantwortlich!&laquo;
+               </div>
        </td>
 </tr>
 </table>
        </td>
 </tr>
 </table>
+</div>
 <script type="text/javascript">
 <!--
 // @TODO Try to rewrite this JavaScript to js.php?js=surfbar_frame_top (wouldn't be easy)
 <script type="text/javascript">
 <!--
 // @TODO Try to rewrite this JavaScript to js.php?js=surfbar_frame_top (wouldn't be easy)
@@ -29,11 +38,11 @@ var reload = document.getElementById("surfbar_reload");
 var max = document.getElementById("surfbar_max");
 var countDown = null;
 
 var max = document.getElementById("surfbar_max");
 var countDown = null;
 
-function StartStopCounter () {
+function startStopCounter () {
        if (countDown == null) {
                // Start counter
                document.getElementById("start").innerHTML = "Anhalten";
        if (countDown == null) {
                // Start counter
                document.getElementById("start").innerHTML = "Anhalten";
-               countDown = window.setInterval("StartCounter()", 1000);
+               countDown = window.setInterval("startCounter()", 1000);
        } else {
                document.getElementById("start").innerHTML = "Weiter";
                window.clearInterval(countDown);
        } else {
                document.getElementById("start").innerHTML = "Weiter";
                window.clearInterval(countDown);
@@ -42,21 +51,21 @@ function StartStopCounter () {
        return false;
 }
 
        return false;
 }
 
-function Init() {
-       countDown = window.setInterval("StartCounter()", 1000);
-       window.setTimeout("InitCounter()", 500);
+function init () {
+       countDown = window.setInterval("startCounter()", 1000);
+       window.setTimeout("initCounter()", 500);
 }
 
 }
 
-function Confirm() {
+function confirm () {
        parent.surfbar_url.location="{%url=surfbar.php?id=$content[url_id]&check=$content[check]&salt=$content[salt]%}";
 }
 
        parent.surfbar_url.location="{%url=surfbar.php?id=$content[url_id]&check=$content[check]&salt=$content[salt]%}";
 }
 
-function ReloadThis() {
+function reloadSurfbar () {
        parent.surfbar_stats.location.reload();
        this.location.reload();
 }
 
        parent.surfbar_stats.location.reload();
        this.location.reload();
 }
 
-function InitCounter() {
+function initCounter () {
        parent.surfbar_url.location.href = '$content[url]';
        counter.innerHTML = '$content[reload]';
        points.innerHTML  = '$content[reward]';
        parent.surfbar_url.location.href = '$content[url]';
        counter.innerHTML = '$content[reload]';
        points.innerHTML  = '$content[reward]';
@@ -64,7 +73,7 @@ function InitCounter() {
        max.innerHTML     = '$content[max_urls]';
 }
 
        max.innerHTML     = '$content[max_urls]';
 }
 
-function StartCounter() {
+function startCounter () {
        if (currCounter < 1) {
                return false;
        }
        if (currCounter < 1) {
                return false;
        }
@@ -74,12 +83,12 @@ function StartCounter() {
 
        if (currCounter == 0) {
                clearInterval(countDown);
 
        if (currCounter == 0) {
                clearInterval(countDown);
-               Confirm();
-               window.setTimeout("ReloadThis()", 500);
+               confirm();
+               window.setTimeout("reloadSurfbar()", 500);
        }
 }
 
        }
 }
 
-Init();
+init();
 
 //-->
 </script>
 
 //-->
 </script>
index 20a15329f2c13de0833cb7c60461397e80ff56c3..c74fef8d6f5fdb6a8dd27c9b111da18a5305f1fb 100644 (file)
@@ -22,7 +22,7 @@ Als Startguthaben erhalten Sie von uns f&uuml;r Ihre kostenlose Anmeldung derzei
 
 <div class="para">
 F&uuml;r jeden User, den Sie geworben haben erhalten Sie
 
 <div class="para">
 F&uuml;r jeden User, den Sie geworben haben erhalten Sie
-<strong>$content[ref_points]</strong>&nbsp;<span class="tiny">({?POINTS?})</span>
+<strong>$content[ref_points] {?POINTS?}</strong>
 plus prozentualen Verdienst &uuml;ber <strong>$content[ref_levels]</strong>
 Referal-Ebenen hinweg!
 </div>
 plus prozentualen Verdienst &uuml;ber <strong>$content[ref_levels]</strong>
 Referal-Ebenen hinweg!
 </div>