Yet another more XHTML fixes
authorRoland Häder <roland@mxchange.org>
Thu, 2 Apr 2009 17:56:11 +0000 (17:56 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 2 Apr 2009 17:56:11 +0000 (17:56 +0000)
64 files changed:
inc/config.php
templates/de/html/admin/admin_add_bank_package.tpl
templates/de/html/admin/admin_add_cat.tpl
templates/de/html/admin/admin_add_country.tpl
templates/de/html/admin/admin_add_payment.tpl
templates/de/html/admin/admin_add_reflvl.tpl
templates/de/html/admin/admin_add_sponsor.tpl
templates/de/html/admin/admin_add_sponsor_already.tpl
templates/de/html/admin/admin_config_active.tpl
templates/de/html/admin/admin_config_beg.tpl
templates/de/html/admin/admin_config_bonus.tpl
templates/de/html/admin/admin_config_cache.tpl
templates/de/html/admin/admin_config_doubler.tpl
templates/de/html/admin/admin_config_extensions.tpl
templates/de/html/admin/admin_config_home_main.tpl
templates/de/html/admin/admin_config_home_settings.tpl
templates/de/html/admin/admin_config_home_settings_pro.tpl
templates/de/html/admin/admin_config_mediadata.tpl
templates/de/html/admin/admin_config_newsletter.tpl
templates/de/html/admin/admin_config_order.tpl
templates/de/html/admin/admin_config_order_form.tpl
templates/de/html/admin/admin_config_other.tpl
templates/de/html/admin/admin_config_point_settings.tpl
templates/de/html/admin/admin_config_points.tpl
templates/de/html/admin/admin_config_proxy.tpl
templates/de/html/admin/admin_config_refback.tpl
templates/de/html/admin/admin_config_refid.tpl
templates/de/html/admin/admin_config_reg_pro.tpl
templates/de/html/admin/admin_config_register2.tpl
templates/de/html/admin/admin_config_removeip.tpl
templates/de/html/admin/admin_config_secure.tpl
templates/de/html/admin/admin_config_session.tpl
templates/de/html/admin/admin_config_sponsor.tpl
templates/de/html/admin/admin_config_sub_points.tpl
templates/de/html/admin/admin_config_yoomedia.tpl
templates/de/html/admin/admin_del_payments.tpl
templates/de/html/admin/admin_edit_email.tpl
templates/de/html/admin/admin_edit_email_select.tpl
templates/de/html/admin/admin_edit_payments.tpl
templates/de/html/admin/admin_extensions_delete.tpl
templates/de/html/admin/admin_extensions_installed.tpl
templates/de/html/admin/admin_extensions_text.tpl
templates/de/html/admin/admin_list_payments.tpl
templates/de/html/admin/admin_menu_failed.tpl
templates/de/html/admin/admin_mini_online.tpl
templates/de/html/admin/admin_overview_task.tpl
templates/de/html/admin/admin_payout_failed_transfer.tpl
templates/de/html/admin/admin_reset_pass_done.tpl
templates/de/html/admin/admin_reset_password.tpl
templates/de/html/admin/admin_reset_password_form.tpl
templates/de/html/admin/admin_send_bonus_select.tpl
templates/de/html/admin/admin_send_reset_link.tpl
templates/de/html/admin/admin_theme_installed.tpl
templates/de/html/admin/admin_validate_reset_hash_form.tpl
templates/de/html/admin/admin_yoomedia_error.tpl
templates/de/html/guest/guest_active_none_row.tpl
templates/de/html/guest/guest_confirm_table.tpl
templates/de/html/guest/guest_login.tpl
templates/de/html/guest/guest_nickname_login.tpl
templates/de/html/guest/guest_sponsor_reg.tpl
templates/de/html/member/member_cats_header.tpl
templates/de/html/member/member_pool_table.tpl
templates/de/html/member/member_stats_table.tpl
templates/de/html/removeip_level.tpl

index 3988d8648ba4f04da88e3ba46e5d261991f0dafd..73806433851664001c6bd79449a394557958867b 100644 (file)
@@ -84,10 +84,10 @@ define('WRITE_FOOTER', true);
 define('OUTPUT_MODE', "render");
 
 // CFG: MAIN_TITLE
-define('MAIN_TITLE', "Your mail-exchanger title");
+define('MAIN_TITLE', "Firebox-Tauscher");
 
 // CFG: SLOGAN
-define('SLOGAN', "Your cool slogan here");
+define('SLOGAN', "Devel-Installation");
 
 // Auto-detection... (patched by "Stelzi" aka. profi-concept, thanks again!)
 $URL = "http://".getenv('SERVER_NAME') . str_replace("\\", "/", dirname($_SERVER['PHP_SELF']));
@@ -101,13 +101,13 @@ define('URL', $URL);
 define('PATH', $PATH);
 
 // CFG: WEBMASTER
-define('WEBMASTER', "you@some-hoster.tld.invalid");
+define('WEBMASTER', "quix0r@firebox.lan");
 
 // CFG: INSTALLED
-define('mxchange_installed', false);
+define('mxchange_installed', true);
 
 // CFG: ADMIN-SETUP
-define('admin_registered', false);
+define('admin_registered', true);
 
 // CFG: FRAMESET
 define('frameset_active', false);
@@ -132,18 +132,18 @@ $MySQL = array(
        // CFG: MYSQL-HOST
        'host'     => "localhost",
        // CFG: MYSQL-DBASE
-       'dbase'    => "db",
+       'dbase'    => "mxchange",
        // CFG: MYSQL-LOGIN
-       'login'    => "user",
+       'login'    => "root",
        // CFG: MYSQL-PASSWORD
-       'password' => "pass",
+       'password' => "ab57dk90",
 );
 
 // CFG: MYSQL-PREIFX
 define('_MYSQL_PREFIX', "mxchange");
 
 // CFG: TABLE-TYPE
-define('_TABLE_TYPE', "MyISAM");
+define('_TABLE_TYPE', "InnoDB");
 
 // CFG: DATABASE-TYPE
 define('_DB_TYPE', "mysql3");
@@ -156,7 +156,7 @@ define('LEAD_EXPIRY_TIME' , (30*24*60*60)); // == 30 days
 // CFG: SMTP-HOSTNAME
 define('SMTP_HOSTNAME', "");
 // CFG: SMTP-USER
-define('SMTP_USER'    , "");
+define('SMTP_USER', "");
 // CFG: SMTP-PASSWORD
 define('SMTP_PASSWORD', "");
 
index c56d71a57a4e77b2c22cbfa448fd4811124eff35..528efaba89adc1cc9e5dad1ac3f1a0d509f15afe 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=add_bank_package" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2" height="30" colspan="3" align="center">
                <strong>{--ADMIN_ADD_BANK_PACKAGE_TITLE--}</strong></td>
index a8c1e2b1a03dafc6c321fa6113396ee7a4a40fdc..1b8ba5dc736a8e06d9a1261b4003d4382b92739e 100644 (file)
@@ -1,6 +1,6 @@
 <div align="center">
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_cats" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" width="10" height="30">&nbsp;</td>
                <td class="admin_title bottom2" align="center" colspan="3">
index aae46eeb38c997f7e3313906f8fa43928825c5d9..f31076743200e64193426753386a3de1e5c58152 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=list_country" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="430">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="430">
        <tr>
                <td class="admin_title bottom2" width="10" height="30">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--ADMIN_ADD_COUNTRY_CODE--}</strong>
index bcfd193d5dc8d3842f0d349e1c15ca70149f7ac0..86513dda934062e071b8086d5ff7290b46e4c553 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=payments&amp;do=add" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="410">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="410">
        <tr>
                <td class="admin_title bottom2" colspan="3" align="center" height="30">
                <strong>{--ADD_NEW_PAYMENT--}</strong></td>
index 9bc21649eaa47580f41a944eec653dc9cd8c65f7..72a048f41796362602b812cad3cd1ab89f2789bd 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_points&sub=ref&amp;do=add" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2" width="10" height="30">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--ADD_NEW_REFDEPTH--}</strong>
index 7d2710cdcb46ef1a0d1d7251cda4b5158645e421..bd624006ce889b9901a0dba1cae257e2f105f663 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=add_sponsor" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="530">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="530">
 <tr>
   <td class="admin_title bottom2" width="10" height="30">&nbsp;</td>
   <td class="admin_title bottom2" colspan="3" align="center">
index 1bf5e45815361f98d7deea28f1e7cbb5cca03512..166df44a9dc07801a2c56cbf5b3188a5475f67db 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=add_sponsor&amp;force=1" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
 <tr>
   <td class="admin_title bottom2" width="10" height="30">&nbsp;</td>
   <td class="admin_title bottom2" align="center">
index cc6eb5ff83f0bc8253e7446fb5c73720f677191b..8967b309db8cd07b2e9336d3dee63df0fb16f3cb 100644 (file)
@@ -1,6 +1,6 @@
 <div align="center">
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_active" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" height="30" width="10">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--ADMIN_ACTIVE_SETTINGS--}:</strong>
index a1ba4df7d0bcb5d89ce078d250d022fa90a1dc56..91fcada2b045d32585137eb126ecd2a919e36014 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_beg" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="3" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_EDIT_BEG_SETTINGS--}</strong></td>
index 72d8c4e7f4f7ed1dc0493406448776016c3fa2e9..ad3853a5f5df7173280e2139f2fbae8252d73108 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_bonus" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="3" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_ACTIVATE_BONUS_SETTINGS--}</strong></td>
index 4956cd1c75f09d54e4d2c9158818be9c7f4b1f6e..923b72a276eb93ca15bd5ade4fc5262e949ab571 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_cache" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="2" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_CONFIG_CACHE_SETTINGS--}</strong></td>
index 2de5e40d553424dbd6cfdc7c1a6a383430728505..b35e5593e97d22ce38d7a749bdb2403de72049da 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_doubler" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="3" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_EDIT_DOUBLER_SETTINGS--}</strong></td>
index 8c3c74993ec8e4784ff39dddedde0b6213591ec2..93c1cee65f77647ce318efb646a28718c1f03c7d 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_extensions" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="2" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_CONFIG_EXTENSIONS_SETTINGS--}</strong></td>
index 9668d4294c9910c2544636d5c113134867421d06..87e7ef3efda43111dcc6bdf188b4b370199a7eb5 100644 (file)
@@ -1,15 +1,16 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table" width="320">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table" width="320">
        <tr>
                <td align="center" class="admin_header top2 bottom2 left2 right2"
                        height="30"><strong>{--ADMIN_CONFIG_HOME_TITLE--}</strong></td>
        </tr>
        <tr>
                <td class="guest_menu_row"><a class="menu_blur"
-                       href="{!URL!}/modules.php?module=admin&amp;what=config_home&amp;sub=target">&nbsp;<strong><big>&middot;</big></strong>&nbsp;{--ADMIN_EDIT_HOME_TARGET--}</a></td>
+                       href="{!URL!}/modules.php?module=admin&amp;what=config_home&amp;sub=target">&nbsp;<strong><big>&middot;</big></strong>&nbsp;{--ADMIN_EDIT_HOME_TARGET--}</a>
+               </td>
        </tr>
        <tr>
                <td class="guest_menu_bottom"><a class="menu_blur"
-                       href="{!URL!}/modules.php?module=admin&amp;what=config_home&amp;sub=settings">&nbsp;<strong><big>&middot;</big></strong>&nbsp;{--ADMIN_EDIT_HOME_SETTINGS--}</a></td>
+                       href="{!URL!}/modules.php?module=admin&amp;what=config_home&amp;sub=settings">&nbsp;<strong><big>&middot;</big></strong>&nbsp;{--ADMIN_EDIT_HOME_SETTINGS--}</a>
+               </td>
        </tr>
 </table>
index fc419cfa9bf4fab41d9e3c3c93844901bb25ea50..c4d8a75b1e07c8caf14dd28f49226e1127e6e6fb 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_home&amp;sub=settings" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="510">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="510">
        <tr>
                <td colspan="3" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_EDIT_HOME_SETTINGS--}</strong></td>
index 0142b7a6bc3c269d90901b8725f56cd6972806a2..4bd8691bc6c421d083df4bf8a3ab250d771c130c 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_home&amp;sub=settings" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="510">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="510">
        <tr>
                <td colspan="3" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_EDIT_HOME_SETTINGS--}</strong></td>
index 29a064cfbe278e7c0d72e2bfa9832eb2b5b08000..3034bc8122d9384f167f182f043b91336d5083c1 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_mediadata" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" height="30" width="10">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--ADMIN_MEDIADATA_SETTINGS--}:</strong>
index f6484840de60fe0b2cf0216ebe7594fa13d8b2bf..c4b4449c20d2710771e7c04a1831dc59a5e2a3c5 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_newsletter" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" width="10" height="30">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--ADMIN_NEWSLETTER_SETTINGS--}</strong>
index 5b6023eb836ff85b15055a5ff83dacbe180573a6..fc0f6a115f70f159b13dd7bafa2158d312b088b3 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_order" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" height="30" width="10">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center">
index 94908868073da1cea86e89093fbd62e47b525a7b..b7d4663ff3b90801191fc509bb076ed11ec67a61 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_order" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" height="30" width="10">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--ADMIN_ORDER_SETTINGS--}:</strong>
index 7af1837e3c79285395728d090c53cacba86b4d65..dd419dd2a088cca1ffd765ba09d9378d2f8fd6a9 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_other" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td colspan="5" height="7" class="seperator admin_title">&nbsp;</td>
        </tr>
index 00dd591aca5f9777680a39e12476f6a9e4de1f2c..bf03d1e3ffa32058ffcbdb2a60c26d3def3cdd5c 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_points&amp;sub=settings" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="2" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_EDIT_POINT_SETTINGS--}</strong></td>
index f4b57a542cd8dcf2b72e68d35aedef8e00202e3b..9a0ac86ec873518220236b74fd60cae7c3219f9c 100644 (file)
@@ -1,6 +1,5 @@
 <div align="center">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="seperator" colspan="3" height="7">&nbsp;</td>
        </tr>
index 006babb77f8e135cab3c9f2aa7defd20b58f8004..afa47a66b9fdb5c2e7d858d91e0dbc0d7fb62b66 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_proxy" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="2" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_EDIT_PROXY_SETTINGS--}</strong></td>
index 63b67836578c4c219512f5db36a6a9b650dcb683..792cd5f104640fc505ab252edd2b78fa67a9e6ed 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_refback" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td colspan="2" align="center" class="admin_title bottom2" height="30">
                        <strong>{--ADMIN_CONFIG_REFBACK_TITLE--}</strong>
index 707fe9f37b047c25aa624677e6e547cea7c6ac46..27a4d6a1a444a41617c60b08799213d61952a7a5 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_refid" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" width="450" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" width="450" class="admin_table dashed">
        <tr>
                <td class="admin_title2 bottom2" colspan="2" align="center">
                        <strong>{--ADMIN_CONFIG_REFID_TITLE--}</strong>
index e7ce5def0cd00ecaa1cf5d9331a9ab8b51c7350d..63621b4fd6791375a9c816e3311467c8f51bd9fe 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_reg" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="430">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="430">
        <tr>
                <td class="admin_title bottom2 seperator" height="30" width="10">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--EDIT_REGFORM_SETTINGS--}</strong>
index 071369316f1c8882ac82954a8fa014bd0b5914a2..a1f991c5d2ed9246e2e660a01f62a19980788d2f 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_register2" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="430">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="430">
        <tr>
                <td class="admin_title bottom2 seperator" height="30" width="10">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--EDIT_REGFORM_SETTINGS--}</strong>
index bde67c512ddc1da6707e50654b73fd6a4ff16abb..2c9a973cebdd2702aaa2b7d00fc8a460a433373e 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_removeip" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
 <tr>
        <td colspan="2" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_CONFIG_REMOVEIP_TITLE--}</strong>
index 6ccce3a445efc2fb71c9ed35946a21d5bb634370..0add724f5b9d42d893cf86f021c2b584f94f244a 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_secure" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" width="10" height="30">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--EDIT_SECURITY_SETTINGS--}</strong>
index c805a8f2e60f9549b4c85f554c7864a6b272228c..d229bfab83268c6e7790144147e1034baf8ddf5c 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_proxy" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="700">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="700">
        <tr>
                <td colspan="2" align="center" class="admin_title bottom2" height="30">
                        <strong>{--ADMIN_SESSION_SETTINGS_TITLE--}</strong>
index 55bdb80fe11c24e545e3e5dd3e29431c1ea20681..4cea9ddc3daa5e2db3db8769d7416e12250b4949 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_sponsor" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
 <tr>
   <td colspan="2" align="center" class="admin_title bottom2" height="30">
     <strong>{--ADMIN_CONFIG_SPONSOR_TITLE--}</strong>
index 480879eb2500d3e73aab74f5634997a800bbf52a..a6cef10530a53dfbc2db95904b010135607a0aa7 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_points&sub=points" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td class="admin_title bottom2 seperator" width="10" height="30">&nbsp;</td>
                <td class="admin_title bottom2" colspan="3" align="center"><strong>{--EDIT_POINTS_SETTINGS--}</strong>
index f152bc0eccf7213fb3e5b677998ca5dc462c9f91..6fb8ebea219afbafa2b852f50c6be090a6e4d44c 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=config_yoomedia" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
 <tr>
        <td colspan="2" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_CONFIG_YOOMEDIA_TITLE--}</strong>
index edc4abd71575f5346e32e6c77151cabf20ddbbe5..7d9f7f555d13dc25a352af331650988ec07ac0ea 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=payments&do=del" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td align="center" height="30" class="admin_title bottom"><strong>{--DELETE_PAYMENT--}:</strong></td>
        </tr>
index 84fc454ab86da6954be3a05bba254bea774def1c..7cf664d93a098ebdc0d0afc29aa28569ef42e737 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=edit_emails" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td width="10" height="30" class="admin_title seperator">&nbsp;</td>
                <td align="center" colspan="3" class="admin_title"><strong>{--ADMIN_EDIT_EMAIL--}:</strong>
index 959beb0a74649fda79b59e595d0a38325521d365..cbec72fe1f8b564bdcabb5131853d7ed67d3b6fd 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=edit_emails" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td width="10" height="30" class="admin_title seperator">&nbsp;</td>
                <td align="center" colspan="3" class="admin_title"><strong>{--ADMIN_SELECT_EMAIL_EDIT--}:</strong>
index 5c1fa46ae311766e3cf1d2c57de38ac696754915..279ce792988ce4d47ad1aa56e4816b311fb0ef3c 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=payments&do=edit" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="500">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="500">
        <tr>
                <td align="center" colspan="2" class="admin_title bottom2" height="30"><strong>{--EDIT_PAYMENT--}:</strong></td>
        </tr>
index 9fe5e2623d29b33acf90d41608e76a442a3eb66f..eed265fbd86d2aef27528a813435850d20f48517 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=extensions" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td colspan="4" align="center" class="admin_title" height="30"><strong>{--ADMIN_REMOVING_THESE_EXTENSIONS--}</strong>
                </td>
index db300328fd10fca1052e8c93b9604f91e75d47e5..da1e9cd6569b66565869dbd78c88e5e41a8c7bcc 100644 (file)
@@ -1,8 +1,7 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       width="400" class="admin_done dashed">
-       <tr>
-               <td align="center" height="40">
-                       <strong>{--ADMIN_EXT_ALREADY_INSTALLED_1--}$content{--ADMIN_EXT_ALREADY_INSTALLED_2--}</strong>
-               </td>
-       </tr>
+<table border="0" cellspacing="0" cellpadding="0" width="400" class="admin_done dashed">
+<tr>
+       <td align="center" height="40">
+               <strong>{--ADMIN_EXT_ALREADY_INSTALLED_1--}$content{--ADMIN_EXT_ALREADY_INSTALLED_2--}</strong>
+       </td>
+</tr>
 </table>
index a80a7515598dbf4819ad884d14d8678732be71ec..cea3b479c1d8f7d716b7cd57cec07971e50cb0a7 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" width="99%" class="admin_table">
+<table border="0" cellspacing="0" cellpadding="0" width="99%" class="admin_table">
        <tr>
                <td height="10" class="seperator">&nbsp;</td>
        </tr>
index 34635dabeee96cc552eef3d9b58a6c757b2bd9d8..9f711bbce03d8185bcce987e78e4be17cbaf68ec 100644 (file)
@@ -1,6 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;what=payments" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       width="99%" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" width="99%" class="admin_table dashed">
        <tr>
                <td align="center" colspan="5" class="admin_title" height="30"><strong>{--EDIT_DEL_PAYMENT--}</strong>
                </td>
index aaf9f04c7e19f0cf08471ca7ecfa17dfad2d7ead..147ae8494ffbb344bacc3aa9d6a3c7e91f1cf860 100644 (file)
@@ -1,16 +1,17 @@
 <br />
 <br />
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       width="420" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" width="420" class="admin_table dashed">
        <tr>
-               <td align="center" height="40" class="admin_header bottom2"><strong>{--ADMIN_MENU_PROBLEM_TITLE--}:</strong>
+               <td align="center" height="40" class="admin_header bottom2">
+                       <strong>{--ADMIN_MENU_PROBLEM_TITLE--}:</strong>
                </td>
        </tr>
        <tr>
                <td height="5" class="seperator">&nbsp;</td>
        </tr>
        <tr>
-               <td align="center" height="40"><div class="admin_failed">$content</div>
+               <td align="center" height="40">
+                       <div class="admin_failed">$content</div>
                </td>
        </tr>
        <tr>
index 7fb48de23d2be99b8488709b0a472d392de4f71d..f73ed3118d0c42c971438611d7b396f8dfee8f60 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" width="170" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" width="170" class="admin_table dashed">
        <tr>
                <td colspan="3" class="admin_title bottom2" align="center" height="30">
                <strong>{--USER_NOW_ONLINE--}</strong></td>
index 1ac49d67ddf2c93c1b9d3c5c588e48aaef073d34..65d73b164f1111d7b0bfce8f58b4cc0eb03f6513 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td colspan="2" align="center" class="admin_title bottom2" height="30">
                <strong>{--ADMIN_TASK_OVERVIEW_HEADER--}</strong></td>
index 2f55d420061c46568957bbef41ba58bef579277e..c0834513d95b1b609676086b11384979b95c366b 100644 (file)
@@ -1,10 +1,10 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       width="400" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" width="400" class="admin_table dashed">
        <tr>
-               <td align="center" class="admin_title bottom2" height="40"><strong>{--ADMIN_PAYOUT_TRANSFER_FAILED--}:</strong>
+               <td align="center" class="admin_title bottom2" height="40">
+                       <strong>{--ADMIN_PAYOUT_TRANSFER_FAILED--}:</strong>
                </td>
        </tr>
        <tr>
                <td align="center" height="40"><strong>$content</strong></td>
        </tr>
-</table>
\ No newline at end of file
+</table>
index e1b88447ece27658648661010ec95e0a6fe04903..34ecd07814f5e6a81742d84c3ef5cfdd53a92135 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
 <tr>
        <td class="admin_title bottom2" height="30">
                <strong>{--ADMIN_RESET_PASS_DONE_TITLE--}</strong>
index da16877a104a2c5c512057f5c548e347ae73f359..ee4a5a8b21ff62f2ea3ef1f4ce5d3f8e400300c0 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;reset_pass=1" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
 <tr>
        <td class="admin_title bottom2" height="30" colspan="2">
                <strong>{--ADMIN_RESET_PASSWORD_TITLE--}</strong>
index 311e323bd22936671c536a694d89fd1609ea7b1a..faa384efb3931c6cee48111715960c5b3d6d2298 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;reset_pass=1" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
 <tr>
        <td class="admin_title bottom2" height="30" colspan="2">
                <strong>{--ADMIN_RESET_PASSWORD_TITLE--}</strong>
index d07dac6e49a234630b470a668397d1cf6e26c1b0..7be4e445bbb78840e27fdc6c80a7f000c4b5cfc4 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
        <tr>
                <td align="center" class="admin_header bottom2" height="30"><strong>{--ADMIN_SEND_BONUS_MAILS--}</strong></td>
        </tr>
index 4dcddd238152c37d57eaa5be302cd6906410316e..a659f607d0631ce6d3a61f995842b22061469076 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;reset_pass=1" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
 <tr>
        <td class="admin_title bottom2" height="30" colspan="2">
                <strong>{--ADMIN_SEND_RESET_LINK_TITLE--}</strong>
index 29cce944109d8dc3cafdffa866db1bcc7d75a4cf..a28e20204481797f56e5146325043e3060771623 100644 (file)
@@ -1,8 +1,5 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center"
-       width="400" class="admin_done dashed">
-       <tr>
-               <td align="center" height="40">
-                       <strong>Alle <u>$content</u> ist/sind bereits installiert.</strong>
-               </td>
-       </tr>
-</table>
\ No newline at end of file
+<div class="admin_done dashed">
+<div style="text-align:center;height40px">
+       <strong>Alle <u>$content</u> ist/sind bereits installiert.</strong>
+</div>
+</div>
index c25cf0261e69deedd47cc86f338930840b83b99e..748fabc57aa1780793e817f4c37fce0be098bdf7 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=admin&amp;reset_pass=1" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
 <tr>
        <td class="admin_title bottom2" height="30" colspan="2">
                <strong>{--ADMIN_VALIDATE_HASH_TITLE--}</strong>
index f96730479defc435575b021c26601e838b40b6d2..daf5868a153536f90a071b1e820ce15e426c2322 100644 (file)
@@ -1,8 +1,8 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="400">
-       <tr>
-               <td class="admin_title bottom2">{--ADMIN_YOOMEDIA_ERROR_TITLE--}</td>
-       </tr>
-       <tr>
-               <td align="center"><strong>$content</strong></td>
-       </tr>
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="400">
+<tr>
+       <td class="admin_title bottom2">{--ADMIN_YOOMEDIA_ERROR_TITLE--}</td>
+</tr>
+<tr>
+       <td align="center"><strong>$content</strong></td>
+</tr>
 </table>
index 68aac3ccca524fb38258a2df9b20779abf2a7060..da37afd225f9ca346e736b0bc64a2942e4b8aebc 100644 (file)
@@ -1,11 +1,10 @@
 <tr>
        <td colspan="3" align="center" class="bottom2">
-       <table border="0" cellspacing="0" cellpadding="0" align="center"
-               width="400" class="admin_done dashed">
+               <table border="0" cellspacing="0" cellpadding="0" width="400" class="admin_done dashed">
                <tr>
                        <td align="center" height="40"><strong>{--GUEST_ACTIVE_NO_MEMER_ONLINE_TODAY--}</strong>
                        </td>
                </tr>
-       </table>
+               </table>
        </td>
 </tr>
index c53bdb0e50a507563b7cd142ebf459497daa3814..9ebb17d78e3d9970e93b77853cdf6d91f0221974 100644 (file)
@@ -1,7 +1,3 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" width="400" class="guest_table dashed">
-       <tr>
-               <td align="center" height="40">
-                       <div class="guest_done">{!__CONFIRM_MSG!}</div>
-               </td>
-       </tr>
-</table>
\ No newline at end of file
+<div class="guest_table dashed">
+       <div style="text-align:center;height:40px" class="guest_done">{!__CONFIRM_MSG!}</div>
+</div>
index 639b6ead3a751df0a7180ae509f0d35ebf23f632..26cd23f97e4c3f3d7cf721ee49a2acb98dbfae95 100644 (file)
@@ -1,11 +1,12 @@
 <form action="{!URL!}/modules.php?module=index&amp;what=login" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="guest_login dashed" width="480">
+<table border="0" cellspacing="0" cellpadding="0" class="guest_login dashed" width="480">
        <tr>
                <td colspan="9" height="3" class="seperator">&nbsp;</td>
        </tr>
        <tr>
                <td width="10" class="seperator">&nbsp;</td>
-               <td colspan="7" align="center" class="guest_login_header"><strong>{--GUEST_WELCOME_MEMBER--}</strong>
+               <td colspan="7" align="center" class="guest_login_header">
+                       <strong>{--GUEST_WELCOME_MEMBER--}</strong>
                </td>
                <td width="10" class="seperator">&nbsp;</td>
        </tr>
                <td width="10" class="seperator">&nbsp;</td>
                <td width="80" align="right">{--GUEST_ENTER_LOGIN--}:</td>
                <td width="10" class="seperator">&nbsp;</td>
-               <td><input type="text" name="id" class="guest_normal" size="4"
-                       maxlength="9"></td>
+               <td>
+                       <input type="text" name="id" class="guest_normal" size="4" maxlength="9" />
+               </td>
                <td width="10" class="seperator">&nbsp;</td>
                <td width="80" align="right">{--GUEST_ENTER_PASSWORD--}:</td>
                <td width="10" class="seperator">&nbsp;</td>
-               <td><input type="password" name="password" class="guest_normal"
-                       size="10" maxlength="255"></td>
+               <td>
+                       <input type="password" name="password" class="guest_normal" size="10" maxlength="255" />
+               </td>
                <td width="10" class="seperator">&nbsp;</td>
        </tr>
        {!LOGIN_FAILURE_MSG!}
        </tr>
        <tr>
                <td width="10" class="seperator">&nbsp;</td>
-               <td colspan="7" align="center"><input type="reset"
-                       class="guest_reset" value="{--CLEAR_FORM--}" />&nbsp;<input
-                       type="submit" name="ok" class="guest_submit"
-                       value="{--LOGIN_SUBMIT--}"></td>
+               <td colspan="7" align="center">
+                       <input type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />
+                       <input type="submit" name="ok" class="guest_submit" value="{--LOGIN_SUBMIT--}" />
+               </td>
                <td width="10" class="seperator">&nbsp;</td>
        </tr>
        <tr>
 </form>
 
 <form action="{!URL!}/modules.php?module=index&amp;what=login" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="guest_login dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="guest_login dashed">
        <tr>
                <td colspan="5" height="3" class="seperator">&nbsp;</td>
        </tr>
        <tr>
                <td width="10" class="seperator">&nbsp;</td>
-               <td colspan="3" align="center" class="guest_login_header"><strong>{--GUEST_GET_NEW_PASS--}</strong>
+               <td colspan="3" align="center" class="guest_login_header">
+                       <strong>{--GUEST_GET_NEW_PASS--}</strong>
                </td>
                <td width="10" class="seperator">&nbsp;</td>
        </tr>
@@ -86,8 +90,9 @@
                <td width="10" class="seperator">&nbsp;</td>
                <td width="145" align="right">{--GUEST_ENTER_LOGIN--}:</td>
                <td width="10" class="seperator">&nbsp;</td>
-               <td width="145"><input type="text" name="id" class="guest_normal"
-                       size="4" maxlength="9" />&nbsp;&nbsp;<strong>{--_OR--}</strong></td>
+               <td width="145">
+                       <input type="text" name="id" class="guest_normal" size="4" maxlength="9" />&nbsp;&nbsp;<strong>{--_OR--}</strong>
+               </td>
                <td width="10" class="seperator">&nbsp;</td>
        </tr>
        <tr>
                <td width="10" class="seperator">&nbsp;</td>
                <td width="145" align="right">{--GUEST_ENTER_EMAIL--}:</td>
                <td width="10" class="seperator">&nbsp;</td>
-               <td width="145"><input type="text" name="email"
-                       class="guest_normal" size="20" maxlength="255" /></td>
+               <td width="145">
+                       <input type="text" name="email" class="guest_normal" size="20" maxlength="255" />
+               </td>
                <td width="10" class="seperator">&nbsp;</td>
        </tr>
        <tr>
        </tr>
        <tr>
                <td width="10" class="seperator">&nbsp;</td>
-               <td colspan="7" align="center"><input type="reset"
-                       class="guest_reset" value="{--CLEAR_FORM--}" />&nbsp;<input
-                       type="submit" name="new_pass" class="guest_submit"
-                       value="{--NEW_PASSWD--}" /></td>
+               <td colspan="7" align="center">
+                       <input type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />
+                       <input type="submit" name="new_pass" class="guest_submit" value="{--NEW_PASSWD--}" />
+               </td>
                <td width="10" class="seperator">&nbsp;</td>
        </tr>
        <tr>
                <td colspan="5" height="3" class="seperator">&nbsp;</td>
        </tr>
 </table>
-</form>
\ No newline at end of file
+</form>
index 580ab6291a68855a751bebd76359854f9d2ebf2d..b2ddc9ee56525c584bc67d75647fa89d6ed2ffd3 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=index&amp;what=login" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="guest_table dashed" width="540">
+<table border="0" cellspacing="0" cellpadding="0" class="guest_table dashed" width="540">
        <tr>
                <td width="10" class="guest_title2 bottom2 seperator" height="30">&nbsp;</td>
                <td colspan="8" class="guest_title2 bottom2"><strong>{--GUEST_WELCOME_MEMBER--}</strong>
        </tr>
        <tr>
                <td width="10" class="guest_footer seperator">&nbsp;</td>
-               <td colspan="8" align="center" class="guest_footer"><input
-                       type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />&nbsp;<input
-                       type="submit" name="ok" class="guest_submit"
-                       value="{--LOGIN_SUBMIT--}"></td>
+               <td colspan="8" align="center" class="guest_footer">
+                       <input type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />
+                       <input type="submit" name="ok" class="guest_submit" value="{--LOGIN_SUBMIT--}" />
+               </td>
                <td width="10" class="guest_footer seperator">&nbsp;</td>
        </tr>
 </table>
 </form>
 
 <form action="{!URL!}/modules.php?module=index&amp;what=login" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="guest_table dashed" width="540">
+<table border="0" cellspacing="0" cellpadding="0" class="guest_table dashed" width="540">
        <tr>
                <td width="10" class="guest_title2 bottom2 seperator">&nbsp;</td>
                <td colspan="3" class="guest_title2 bottom2" height="30"><strong>{--GUEST_GET_NEW_PASS--}</strong>
        </tr>
        <tr>
                <td width="10" class="guest_footer seperator">&nbsp;</td>
-               <td colspan="3" align="center" class="guest_footer"><input
-                       type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />&nbsp;<input
-                       type="submit" name="new_pass" class="guest_submit"
-                       value="{--NEW_PASSWD--}" /></td>
+               <td colspan="3" align="center" class="guest_footer">
+                       <input type="reset" class="guest_reset" value="{--CLEAR_FORM--}" />
+                       <input type="submit" name="new_pass" class="guest_submit" value="{--NEW_PASSWD--}" />
+               </td>
                <td width="10" class="guest_footer seperator">&nbsp;</td>
        </tr>
 </table>
index 3a0ca829255b1bf73c66dd287bd2dcaeb439cb11..5a0f5263272a8ca2f69b51c90123fd67d7eb966a 100644 (file)
@@ -1,4 +1,3 @@
-{!__SPONSOR_FORM_ERRORS!}
 <div align="center">
        <div class="big">{--GUEST_SPONSOR_TITLE--}</div>
 </div>
@@ -11,7 +10,7 @@
 </div>
 
 <form action="{!URL!}/modules.php?module=index&amp;what=sponsor_reg" method="post">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="guest_table dashed" width="530">
+<table border="0" cellspacing="0" cellpadding="0" class="guest_table dashed" width="530">
 <tr>
   <td class="guest_title2 bottom2" width="10" height="30">&nbsp;</td>
   <td class="guest_title2 bottom2" colspan="3" align="center">
index 6cece9acc8dd02d68b4d4ae877c45484a19ea855..f5545992903a571808cfa127777ddb8e33975d01 100644 (file)
@@ -1,5 +1,5 @@
 <form action="{!URL!}/modules.php?module=login&amp;what=categories" method="post" style="margin-bottom: 0px">
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="member_main dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="member_main dashed">
 <tr>
        <td colspan="5" height="5" class="seperator"></td>
 </tr>
index 2a9f77b8a5c70a91a961029d09a36595d8c12bee..56c64cf465e1bf072b2592bf76ee4a49308ac21c 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="member_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="member_table dashed">
 <tr>
        <td colspan="3" align="center" height="25" class="member_header">
                <div class="member_done">{--MEMBER_POOL_CONTENT--}</div>
index da8ef34be210aee7eda25a264e5d7ec0a3aadcf4..d47c64207ed507d30c6338b505bd71a85b0e99c7 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="member_table dashed">
+<table border="0" cellspacing="0" cellpadding="0" class="member_table dashed">
 <tr>
        <td colspan="3" align="center" height="25" class="member_header">
                <div class="member_done">{--MEMBER_STATS_CONTENT--}</div>
index d05e5f7e382bbc7d954b04e45e54e44b29064c05..0307bc2e0dc4a8b70ddf23c65310209ccb14c1f8 100644 (file)
@@ -1,4 +1,4 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed" width="350">
+<table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="350">
 <tr>
        <td class="admin_title bottom2">
                Anonymit&auml;tslevel in diesem {!MT_WORD!}: