XHTML fixes (not fully valid)
authorRoland Häder <roland@mxchange.org>
Sun, 31 Aug 2008 12:06:31 +0000 (12:06 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 31 Aug 2008 12:06:31 +0000 (12:06 +0000)
73 files changed:
inc/header.php
inc/stylesheet.php
templates/de/html/admin/admin_overview_task.tpl
templates/de/html/beg/beg_link.tpl
templates/de/html/birthday/birthday_msg.tpl
templates/de/html/copyright.tpl
templates/de/html/copyright_backlink.tpl
templates/de/html/doubler/doubler_index.tpl
templates/de/html/doubler/doubler_reflink.tpl
templates/de/html/ext/ext_sponsor.tpl
templates/de/html/fatal_footer.tpl
templates/de/html/guest/guest_beg.tpl
templates/de/html/guest/guest_doubler.tpl
templates/de/html/guest/guest_header.tpl
templates/de/html/guest/guest_login.tpl
templates/de/html/guest/guest_nickname_login.tpl
templates/de/html/guest/guest_register.tpl
templates/de/html/guest/guest_sponsor_activate.tpl
templates/de/html/guest/guest_sponsor_infos.tpl
templates/de/html/guest/guest_sponsor_login.tpl
templates/de/html/guest/guest_sponsor_lost.tpl
templates/de/html/guest/guest_sponsor_reg.tpl
templates/de/html/guest/guest_top10.tpl
templates/de/html/header.tpl
templates/de/html/impressum.tpl
templates/de/html/index.tpl
templates/de/html/install/install_fatal_row.tpl
templates/de/html/install/install_finished.tpl
templates/de/html/loader.tpl
templates/de/html/mailid/mailid_confirm_buttom.tpl
templates/de/html/mailid/mailid_enter_code.tpl
templates/de/html/mailid/mailid_points_done.tpl
templates/de/html/mailid/mailid_points_done2.tpl
templates/de/html/mailid/mailid_points_locked.tpl
templates/de/html/mailid/mailid_points_locked2.tpl
templates/de/html/mediadata.tpl
templates/de/html/member/member_beg.tpl
templates/de/html/member/member_bonus.tpl
templates/de/html/member/member_doubler.tpl
templates/de/html/member/member_header.tpl
templates/de/html/member/member_holiday_form.tpl
templates/de/html/member/member_list_beg.tpl
templates/de/html/member/member_newsletter.tpl
templates/de/html/member/member_newsletter_note.tpl
templates/de/html/member/member_order-back.tpl
templates/de/html/member/member_order-html_ext.tpl
templates/de/html/member/member_order-zip1.tpl
templates/de/html/member/member_order_page2.tpl
templates/de/html/member/member_order_points.tpl
templates/de/html/member/member_payout_form.tpl
templates/de/html/member/member_payout_form_banner.tpl
templates/de/html/member/member_reflinks_row.tpl
templates/de/html/member/member_stats_row.tpl
templates/de/html/member/member_support_form.tpl
templates/de/html/member/member_transfer_overview.tpl
templates/de/html/member/member_welcome_header.tpl
templates/de/html/member/member_wernis_form.tpl
templates/de/html/member/member_wernis_mode_pay.tpl
templates/de/html/member/member_wernis_mode_withdraw.tpl
templates/de/html/message.tpl
templates/de/html/metadata.tpl
templates/de/html/page_body.tpl
templates/de/html/page_header.tpl
templates/de/html/profile-update.tpl
templates/de/html/rallye_test.tpl
templates/de/html/runtime_fatal_row.tpl
templates/de/html/show_bonus_msg.tpl
templates/de/html/sponsor/sponsor_header.tpl
templates/de/html/sponsor/sponsor_welcome.tpl
templates/de/html/theme_one.tpl
templates/de/html/welcome.tpl
templates/en/html/admin/admin_welcome.tpl
templates/en/html/impressum.tpl

index a5462b7495c6edd5efe57d48f7d3c76fb168bd4d..2107e845a1507c273a9cc60561950011fcdd8988 100644 (file)
@@ -111,7 +111,7 @@ if (($header != "1") && ($header != "2")) {
        }
 
        // Closing HEAD tag
-       if ($CSS != "1") OUTPUT_HTML("</HEAD>");
+       if ($CSS != "1") OUTPUT_HTML("</head>");
        $header = 1;
 }
 
index a341fd599f49262318f0e6db42d1d79a6d5f2455..17572429a25e349180352895c422a46b8ac4a8b3 100644 (file)
@@ -71,38 +71,34 @@ if (($CSS == "1") || ($_CONFIG['css_php'] == "DIRECT"))
        foreach ($STYLES as $value)
        {
                // Only include found CSS files (to reduce 404 requests)
-               $BASE = PATH."theme/".GET_CURR_THEME()."/css/";
+               $BASE = sprintf("%stheme/%s/css/", PATH, GET_CURR_THEME());
                $file = $BASE.$value;
+
                // Do include only existing files and whose are not empty
-               if ((file_exists($file)) && (filesize($file) > 0))
-               {
-                       switch ($_CONFIG['css_php'])
-                       {
-                       case "DIRECT":
-                               OUTPUT_HTML("<LINK rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/".$BASE."\">");
-                               break;
+               if ((file_exists($file)) && (filesize($file) > 0)) {
+                       switch ($_CONFIG['css_php']) {
+                               case "DIRECT":
+                                       OUTPUT_HTML("<link rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/".$BASE."\" />");
+                                       break;
 
-                       case "FILE":
-                               $load = implode("", file($file));
-                               OUTPUT_HTML($load);
-                               break;
+                               case "FILE":
+                                       $load = implode("", file($file));
+                                       OUTPUT_HTML($load);
+                                       break;
                        }
                }
        }
-}
- else
-{
+} else {
        // Now we load all CSS files from css.php!
-       OUTPUT_HTML("<LINK rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/css.php", false);
-       if (isBooleanConstantAndTrue('mxchange_installing'))
-       {
+       OUTPUT_HTML("<link rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/css.php", false);
+       if (isBooleanConstantAndTrue('mxchange_installing')) {
                // Default theme first
                $NEW_THEME = "default";
                if (!empty($_GET['theme'])) $NEW_THEME = $_GET['theme'];
                if (!empty($_POST['theme'])) $NEW_THEME = $_POST['theme'];
                OUTPUT_HTML("?theme=".$NEW_THEME."&amp;installing=1", false);
        }
-       OUTPUT_HTML("\">");
+       OUTPUT_HTML("\" />");
 }
 
 //
index ea16a6ab764f2bf40f6539440520c401e6b3ffa1..6c2baf60a691783578a5b2c7a13aba7cb51c2c26 100644 (file)
@@ -1,5 +1,4 @@
-<TABLE border="0" cellspacing="0" cellpadding="0" width="580"
-       align="center" class="admin_table dashed">
+<TABLE border="0" cellspacing="0" cellpadding="0" width="580" align="center" class="admin_table dashed">
        <TR>
                <TD colspan="2" align="center" class="admin_title bottom2" height="30">
                <STRONG>{--TASK_ADMIN_OVERVIEW_HEADER--}</STRONG></TD>
@@ -10,8 +9,7 @@
        </TR>
        <TR>
                <TD align="center" valign="top">
-               <TABLE border="0" cellspacing="0" cellpadding="0" width="275"
-                       class="admin_table dashed">
+               <TABLE border="0" cellspacing="0" cellpadding="0" width="275" class="admin_table dashed">
                        <TR>
                                <TD colspan="3" class="admin_title2 bottom2"><STRONG>{--TASK_ADMIN_OVERVIEW_MAILS--}:</STRONG>
                                </TD>
index 5e49a380facc38d58fc80dd0e9e0abd58a147fa3..a24ff16de63ad62666b32a2bbbe57361a70e61af 100644 (file)
@@ -11,7 +11,7 @@
                        class="beg_table dashed" width="620">
                        <TR>
                                <TD align="center" height="50" class="bottom2"><FONT
-                                       class="big">{--BEG_LINK_BY_1--}<STRONG>{!MAIN_TITLE!}</STRONG>{--BEG_LINK_BY_2--}</FONT><BR>
+                                       class="big">{--BEG_LINK_BY_1--}<STRONG>{!MAIN_TITLE!}</STRONG>{--BEG_LINK_BY_2--}</FONT><br />
                                {--BEG_LINK_USERID_1--}<U>{!__BEG_UID!}</U>{--BEG_LINK_USERID_2--}</TD>
                        </TR>
                        <TR>
index a17a3717eef068e4c756e4c2626661f803a166bf..b6bf6bc41a2c86657301454f777f2047eb38c07c 100644 (file)
@@ -1,9 +1,9 @@
 <STRONG class="big">Herzlichen Gl&uuml;ckwunsch zum Geburtstag!</STRONG>
-<BR>
-<BR>
+<br />
+<br />
 Hallo {!__SALUT!} {!__SNAME!} {!__FNAME!}!
-<BR>
-<BR>
+<br />
+<br />
 Wir das Team von
 <STRONG class="nobr">{!MAIN_TITLE!}</STRONG>
 w&uuml;schen Ihnen alles Gute und Gesundheit zum Geburtstag. Als kleines
index c95e5ef7da09757d6d3603d366b1d4da70f34f78..7d443f2bd8c25e58651a37bc63df156df334448e 100644 (file)
@@ -1,7 +1,7 @@
 <TABLE border="0" cellspacing="0" cellpadding="0" align="center">
        <TR>
                <TD align="center" class="footer_lines">{!TITLE!}
-               v{!FULL_VERSION!}<BR>
+               v{!FULL_VERSION!}<br />
                Copyright &copy; 2003 - 2008 by Roland H&auml;der</TD>
                <TD align="center" width="50%" class="footer_lines">This
                website&#39;s engine is free software which is released under the GNU
index 717174bb5f067e2095f52ed2874f52d7b82b126c..46789bacd15010cd6d94825d4ce220bca81a6147 100644 (file)
@@ -1,7 +1,7 @@
 <TABLE border="0" cellspacing="0" cellpadding="0" align="center">
        <TR>
                <TD align="center" class="footer_lines">{!TITLE!}
-               v{!FULL_VERSION!}<BR>
+               v{!FULL_VERSION!}<br />
                {!COPY!}</TD>
                <TD align="center" width="50%" class="footer_lines">This
                website&#39;s engine is free software which is released under the GNU
index 0ccc8669328fb07c8f304ee910ecca7f53acd777..e63cdc7a663c1e036d17bc48693e52f3ae6e71a1 100644 (file)
@@ -6,16 +6,16 @@
        <TR>
                <TD align="center" class="doubler_main">
                <H3 class="huge">{!POINTS!}-{--DOUBLER_TITLE--} - {!MAIN_TITLE!}</H3>
-               <BR>
-               {--DOUBLER_ENTER_LOGIN_DATA--}<BR>
-               {--DOUBLER_NOTE_FOR_PASSWORD--}<BR>
-               <BR>
+               <br />
+               {--DOUBLER_ENTER_LOGIN_DATA--}<br />
+               {--DOUBLER_NOTE_FOR_PASSWORD--}<br />
+               <br />
                <FORM action="{!URL!}/doubler.php?refid={!__REFID!}" method="POST"
                        style="margin-bottom: 0px">
                <TABLE border="0" cellspacing="0" cellpadding="0"
                        class="guest_table dashed" width="520">
                        <TR>
-                               <TD colspan="2" class="guest_title2 bottom2" height="30"><STRONG>{!POINTS!}-{--DOUBLER_TITLE--}</STRONG><BR>
+                               <TD colspan="2" class="guest_title2 bottom2" height="30"><STRONG>{!POINTS!}-{--DOUBLER_TITLE--}</STRONG><br />
                                <FONT class="doubler_error">{--__ERROR_MSG--}</FONT></TD>
                        </TR>
                        <TR>
                        </TR>
                </TABLE>
                </FORM>
-               <BR>
+               <br />
                {--DOUBLER_ALREADY_PAYED_1--} <STRONG>{!__TOTAL_VALUE!}
-               {!POINTS!}</STRONG> {--DOUBLER_ALREADY_PAYED_2--}<BR>
+               {!POINTS!}</STRONG> {--DOUBLER_ALREADY_PAYED_2--}<br />
                {--DOUBLER_POINTS_LEFT_1--} <STRONG>{!__LEFT_VALUE!}
-               {!POINTS!}</STRONG> {--DOUBLER_POINTS_LEFT_2--}<BR>
+               {!POINTS!}</STRONG> {--DOUBLER_POINTS_LEFT_2--}<br />
                {--DOUBLER_USAGE_COUNTER_1--} <STRONG>{!__DOUBLER_COUNTER!}</STRONG>
-               {--DOUBLER_USAGE_COUNTER_2--}<BR>
-               <BR>
+               {--DOUBLER_USAGE_COUNTER_2--}<br />
+               <br />
                {--DOUBLER_MINIMUM_IS--} <STRONG>{!__MIN_VALUE!} {!POINTS!}</STRONG>
-               {--DOUBLER_MAXIMUM_IS--} <STRONG>{!__MAX_VALUE!} {!POINTS!}</STRONG><BR>
-               {--DOUBLER_HAVE_FUN--}<BR>
-               <BR>
-               {!DOUBLER_PAYOUT_TIME!}<BR>
-               <BR>
+               {--DOUBLER_MAXIMUM_IS--} <STRONG>{!__MAX_VALUE!} {!POINTS!}</STRONG><br />
+               {--DOUBLER_HAVE_FUN--}<br />
+               <br />
+               {!DOUBLER_PAYOUT_TIME!}<br />
+               <br />
                {--DOUBLER_POINTS_1--} <STRONG>{!__CHARGE_VALUE!}%</STRONG>
-               {--DOUBLER_POINTS_2--}<BR>
-               <BR>
+               {--DOUBLER_POINTS_2--}<br />
+               <br />
                {--DOUBLER_EXAMPLE_1--} <STRONG>500 {!POINTS!}</STRONG> --&gt;
-               {--DOUBLER_EXAMPLE_2--} <STRONG>1000 {!POINTS!}</STRONG>{--DOUBLER_EXAMPLE_3--}<BR>
-               <BR>
-               <STRONG class="big">{--DOUBLER_FULL_PAYOUT--}</STRONG><BR>
-               <BR>
+               {--DOUBLER_EXAMPLE_2--} <STRONG>1000 {!POINTS!}</STRONG>{--DOUBLER_EXAMPLE_3--}<br />
+               <br />
+               <STRONG class="big">{--DOUBLER_FULL_PAYOUT--}</STRONG><br />
+               <br />
                {--DOUBLER_REFERRAL_1--} <STRONG>{!__REF_VALUE!}%</STRONG>
                {--DOUBLER_REFERRAL_2--} {--DOUBLER_REFERRAL_3--}
                {--DOUBLER_REFERRAL_4--} {--DOUBLER_REFERRAL_5--} <STRONG>100
                {!POINTS!}</STRONG> {--DOUBLER_REFERRAL_6--} <STRONG>100 {!POINTS!}</STRONG>
                {--DOUBLER_REFERRAL_8--} <STRONG>300 {!POINTS!}</STRONG>
-               {--DOUBLER_REFERRAL_8--} {--DOUBLER_REFERRAL_LINK--}<BR>
-               {--__DOUBLER_MSG--} <BR>
+               {--DOUBLER_REFERRAL_8--} {--DOUBLER_REFERRAL_LINK--}<br />
+               {--__DOUBLER_MSG--} <br />
                {--DOUBLER_NOT_YET_REGISTERED--} <A
-                       href="{!URL!}/ref.php?refid={!__REFID!}">{--DOUBLER_REGISTER_NOW--}</A><BR>
-               <BR>
+                       href="{!URL!}/ref.php?refid={!__REFID!}">{--DOUBLER_REGISTER_NOW--}</A><br />
+               <br />
                {--DOUBLER_YOUR_ADVERTISING_HERE--} <A
-                       href="{!URL!}/modules.php?module=index&amp;what=impressum&amp;refid={!__REFID!}">{--DOUBLER_CONTACT_US--}</A><BR>
-               <BR>
-               {--__DOUBLER_BANNER--}<BR>
-               <BR>
+                       href="{!URL!}/modules.php?module=index&amp;what=impressum&amp;refid={!__REFID!}">{--DOUBLER_CONTACT_US--}</A><br />
+               <br />
+               {--__DOUBLER_BANNER--}<br />
+               <br />
                {!__DOUBLER_PAYOUT_HISTORY!}</TD>
        </TR>
        <TR>
index 49a0b4a0e93b7bfa9765e390c917df10fd56bc36..579741f8dac2ca65f8537672c277e93de6306b4b 100644 (file)
@@ -1,3 +1,3 @@
 {--DOUBLER_MEMBER_YOUR_REFLINK--}:
 <A href="{!URL!}/doubler.php?refid=$content">{!URL!}/doubler.php?refid=$content</A>
-<BR>
+<br />
index 68ce4c00853a1fdd5bcf3b2c8f6074aaaf9f5c40..1189c25ab46cb24666c88f8779e7cf49b6303b54 100644 (file)
@@ -1 +1 @@
-{--MT_WORD3--} &quot;leben&quot; von ihren Sponsoren. Mit dieser Erweiterung steht Ihnen eine professionelle L&ouml;sung bereit, mit der Sie neue Sponoren werben k&ouml;nnen.<BR><BR>Die wichtigsten Funktionen des Sponsorbereiches:<UL><LI>Echtzeitstatistik im Sponsorenbereich f&uuml;r jede Sponsoraktion seperat und gemeinsam</LI>Einfaches Nachbestellen von {--POINTS--}n (Konto auff&uuml;llen) und &Auml;ndern der Einstellungen des Sponsors (sowohl aus dem Adminbereich als auch vom Sponsor selber durchf&uuml;hrbar)</LI><LI>Volle administrative Kontrolle (z.B. wird das Sponsorenaccount gesperrt, wenn er seine Email-Adresse &auml;ndert oder neue {--POINTS--} bestellt hat; jede vom Sponsor durchgef&uuml;hrte Sponsorenaktion (Mailbuchung, neue SignUp-Aktion erstellt oder bestehende ge&auml;ndert) muss von Ihnen freigegeben werden)</LI><LI>Eigenes von anderen unabh&auml;ngige Men&uuml;system</LI><LI>Sie k&ouml;nnen (und sollten es auch) eigene Sponsoren-Accounts aus dem Adminbereich anlegen</LI><LI>Installieren Sie eine zus&auml;tzliche Erweiterung mit Sponsor-Anteil Ihrem {--MT_WORD--} hinzu, wird automatisch ein entsprechender Men&uuml;punkt in den Sponsorenbereich eingef&uuml;gt.</LI><LI>Einfache Werbemittel-Verwaltung: Die Sponsoren brauchen nur einmal eine URL bzw. einen Banner hinzuf&uuml;gen (ausser wenn diese gel&ouml;scht wurden).</LI><LI>Sp&auml;ter k&ouml;nnen die URLs und Banner beliebig Kampagnen zugewiesen werden.</LI><LI>Kampagnen k&ouml;nnen entweder von einem Anfangsdatum bis zu einem Enddatum laufen oder bis das &uuml;bertragene Guthaben an {--POINTS--} aufgebraucht ist.</LI><LI>In allen F&auml;llen ist eine Mail zum Sponsor und zu den Administratoren unterwegs!</LI><LI>Ihre Sponsoren werden im Mitgliedsbereich Ihren Mitgliedern etwas vorstellt. Bestimmen Sie dabei, welche Daten der Sponsor anzeigen lassen kann und welche nicht!</LI></OL>
+{--MT_WORD3--} &quot;leben&quot; von ihren Sponsoren. Mit dieser Erweiterung steht Ihnen eine professionelle L&ouml;sung bereit, mit der Sie neue Sponoren werben k&ouml;nnen.<br /><br />Die wichtigsten Funktionen des Sponsorbereiches:<UL><LI>Echtzeitstatistik im Sponsorenbereich f&uuml;r jede Sponsoraktion seperat und gemeinsam</LI>Einfaches Nachbestellen von {--POINTS--}n (Konto auff&uuml;llen) und &Auml;ndern der Einstellungen des Sponsors (sowohl aus dem Adminbereich als auch vom Sponsor selber durchf&uuml;hrbar)</LI><LI>Volle administrative Kontrolle (z.B. wird das Sponsorenaccount gesperrt, wenn er seine Email-Adresse &auml;ndert oder neue {--POINTS--} bestellt hat; jede vom Sponsor durchgef&uuml;hrte Sponsorenaktion (Mailbuchung, neue SignUp-Aktion erstellt oder bestehende ge&auml;ndert) muss von Ihnen freigegeben werden)</LI><LI>Eigenes von anderen unabh&auml;ngige Men&uuml;system</LI><LI>Sie k&ouml;nnen (und sollten es auch) eigene Sponsoren-Accounts aus dem Adminbereich anlegen</LI><LI>Installieren Sie eine zus&auml;tzliche Erweiterung mit Sponsor-Anteil Ihrem {--MT_WORD--} hinzu, wird automatisch ein entsprechender Men&uuml;punkt in den Sponsorenbereich eingef&uuml;gt.</LI><LI>Einfache Werbemittel-Verwaltung: Die Sponsoren brauchen nur einmal eine URL bzw. einen Banner hinzuf&uuml;gen (ausser wenn diese gel&ouml;scht wurden).</LI><LI>Sp&auml;ter k&ouml;nnen die URLs und Banner beliebig Kampagnen zugewiesen werden.</LI><LI>Kampagnen k&ouml;nnen entweder von einem Anfangsdatum bis zu einem Enddatum laufen oder bis das &uuml;bertragene Guthaben an {--POINTS--} aufgebraucht ist.</LI><LI>In allen F&auml;llen ist eine Mail zum Sponsor und zu den Administratoren unterwegs!</LI><LI>Ihre Sponsoren werden im Mitgliedsbereich Ihren Mitgliedern etwas vorstellt. Bestimmen Sie dabei, welche Daten der Sponsor anzeigen lassen kann und welche nicht!</LI></OL>
index 12ce70c7d3bd61f4b7a35cccd5e81893846c69dd..e7bd270f557535d56a564efafc07f1a66590ab81 100644 (file)
@@ -1,4 +1,3 @@
-
-<BR>
-<DIV class="fatal_footer">$content</DIV>
+       <br />
+       <DIV class="fatal_footer">$content</DIV>
 </DIV>
index e5fa5adeceec4da17d6f0320a0bdca7519d85f77..55411e57e819682dc02599161a932c2966cba5f3 100644 (file)
@@ -7,7 +7,7 @@
                <TD width="10" rowspan="10" class="seperator">&nbsp;</TD>
        </TR>
        <TR>
-               <TD align="center" class="beg_msg" height="60"><FONT class="big">{--BEG_GUEST_TRAILER--}</FONT><BR>
+               <TD align="center" class="beg_msg" height="60"><FONT class="big">{--BEG_GUEST_TRAILER--}</FONT><br />
                {!MAIN_TITLE!}</TD>
        </TR>
        <TR>
index a5593005b4606163cfef679fc0bd7f0099cf5ea9..39ecaa6e6778185fa3a7f2d6d9b2929fccdd82a8 100644 (file)
 </TABLE>
 </DIV>
 
-<P align="center"><STRONG class="big">{--DOUBLER_ALREADY_PAYOUT--}:</STRONG><BR>
-<BR>
+<P align="center"><STRONG class="big">{--DOUBLER_ALREADY_PAYOUT--}:</STRONG><br />
+<br />
 {!__DOUBLER_PAYOUT_HISTORY!}</P>
 
-<P align="center"><STRONG class="big">{--DOUBLER_NEXT_PAYOUT--}:</STRONG><BR>
-<BR>
+<P align="center"><STRONG class="big">{--DOUBLER_NEXT_PAYOUT--}:</STRONG><br />
+<br />
 {!__DOUBLER_PAYOUT_NEXT!}</P>
index ade72e031e9f7c066ef1b0beee001cbd9ce691f8..2dddc769b9effa7a3163454e3f59d78800c97420 100644 (file)
@@ -6,7 +6,7 @@
                        name="TOP"></A> <!-- Ab hier Kopf! --> <STRONG><BIG>-&nbsp;-&nbsp;-
                <A title="{!MAIN_TITLE!}"
                        style="cursor: default; background: none; text-decoration: none"
-                       class="guest_header">{!MAIN_TITLE!}</A>&nbsp;-&nbsp;-&nbsp;-</BIG></STRONG><BR>
+                       class="guest_header">{!MAIN_TITLE!}</A>&nbsp;-&nbsp;-&nbsp;-</BIG></STRONG><br />
                <TABLE border="0" cellspacing="0" cellpadding="0" width="100%">
                        <TR>
                                <TD width="200"><FONT class="guest_header">&nbsp;&nbsp;Hallo
index ce733eab491b5829126f70834ebf57d591727548..1a2f83dacc75492775ace97024039305e535d557 100644 (file)
@@ -69,7 +69,7 @@
        </TR>
 </TABLE>
 </FORM>
-<BR>
+<br />
 <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"
index 56b176f341fc70c56bd18f6e3a018cbd8229df5e..4d6c398e01c52bb7abcddba07403df026e5601ea 100644 (file)
@@ -64,7 +64,7 @@
 </TABLE>
 </FORM>
 
-<BR>
+<br />
 
 <FORM action="{!URL!}/modules.php?module=index&amp;what=login"
        method="POST" style="margin-bottom: 0px">
index 9d8f1e90468ced6549b1111a9fa5135181910294..a2e00e0265970a230326092a619a7b69d72b6385 100644 (file)
        </TR>
        <TR>
                <TD colspan="2" class="guest_title2 bottom2" height="30">
-               {--TERMS_OF_USAGE--}:<BR>
+               {--TERMS_OF_USAGE--}:<br />
                <SPAN class="guest_failed">{--YOU_FINALIZE--}</SPAN></TD>
        </TR>
        <TR>
index accc52c299d1ed5bd8e3a5116528a54d25f70cbe..3195bc2afb8190f35d7c783e873e74592f488499 100644 (file)
 <DIV align="center">
   <FONT class="guest_note">{--SPONSOR_HOWTO_GET_ACTIVATION_LINK--}</FONT>
 </DIV>
-<BR>
+<br />
 <DIV align="center">
 <TABLE border="0" cellspacing="0" cellpadding="0" class="guest_table" width="100%">
 <TR>
   <TD align="center" height="30">
-    --&gt;&nbsp;<A href="{--URL--}/modules.php?module=index&amp;what=sponsor_login">{--SPONSOR_BACK_TO_LOGIN--}</A><BR>
+    --&gt;&nbsp;<A href="{--URL--}/modules.php?module=index&amp;what=sponsor_login">{--SPONSOR_BACK_TO_LOGIN--}</A><br />
   </TD>
 </TR>
 </TABLE>
index 5fb741ec75e7794adc1f1a088940fa86c518478b..465f7245ce08c7df26a8b914ea26c2a8fcdeca31 100644 (file)
@@ -2,13 +2,13 @@
 <TABLE border="0" cellspacing="0" cellpadding="0" class="guest_table dashed" width="550">
 <TR>
   <TD class="guest_title bottom2">
-    <STRONG class="big">{--GUEST_SPONSOR_WANT_BECOME_HEADER--}</STRONG><BR>
+    <STRONG class="big">{--GUEST_SPONSOR_WANT_BECOME_HEADER--}</STRONG><br />
     {--GUEST_SPONSOR_INFOS_PRICING_HEADER--}
   </TD>
 </TR>
 <TR>
   <TD align="center" class="bottom2" style="padding-top:15px; padding-bottom: 15px">
-    {--GUEST_SPONSOR_PRICING_HEADER--}<BR>
+    {--GUEST_SPONSOR_PRICING_HEADER--}<br />
     <TABLE border="0" cellspacing="0" cellpadding="0" class="guest_table dashed" width="450">
 {--__SPONSOR_PAYTYPES--}
     <TR><TD colspan="2" class="guest_title2 seperator" height="29">&nbsp;</TD></TR>
index 050f00eeae59ae3544a79434e427446007d322bb..ac9a2d1ddae61b305036f76ec8ddd64db04065d6 100644 (file)
@@ -34,7 +34,7 @@
 </FORM>
 </DIV>
 
-<BR>
+<br />
 
 <DIV align="center">
 <TABLE border="0" cellspacing="0" cellpadding="0" class="guest_table" width="100%">
@@ -45,7 +45,7 @@
 </TR>
 <TR>
   <TD align="center" height="30">
-    --&gt;&nbsp;<A href="{--URL--}/modules.php?module=index&amp;what=sponsor_login&amp;mode=activate">{--SPONSOR_ACTIVATION_LINK_LOST--}</A><BR>
+    --&gt;&nbsp;<A href="{--URL--}/modules.php?module=index&amp;what=sponsor_login&amp;mode=activate">{--SPONSOR_ACTIVATION_LINK_LOST--}</A><br />
   </TD>
 </TR>
 </TABLE>
index 43dc3f1361604ec9927a6564a5a359153879d33b..553500b24307df46ef2d43bf1bf040c972094cce 100644 (file)
 <DIV align="center">
   <FONT class="guest_note">{--SPONSOR_HOWTO_GET_LOST_PASSWORD--}</FONT>
 </DIV>
-<BR>
+<br />
 <DIV align="center">
 <TABLE border="0" cellspacing="0" cellpadding="0" class="guest_table" width="100%">
 <TR>
   <TD align="center" height="30">
-    --&gt;&nbsp;<A href="{--URL--}/modules.php?module=index&amp;what=sponsor_login">{--SPONSOR_BACK_TO_LOGIN--}</A><BR>
+    --&gt;&nbsp;<A href="{--URL--}/modules.php?module=index&amp;what=sponsor_login">{--SPONSOR_BACK_TO_LOGIN--}</A><br />
   </TD>
 </TR>
 </TABLE>
index acd74ccbf463521af3ab08b52030e36f801a985a..e62307250af5b367d02da33b9d5253c972c52cb5 100644 (file)
@@ -1,12 +1,12 @@
 {--__SPONSOR_FORM_ERRORS--}
 <DIV align="center"><STRONG class="big">{--GUEST_SPONSOR_TITLE--}</STRONG></DIV>
-<BR>
-{--GUEST_SPONSOR_TEASER_1--}<BR>
-<BR>
-{--GUEST_SPONSOR_TEASER_2--}<BR>
-<BR>
-{--GUEST_SPONSOR_TEASER_3--}<BR>
-<BR>
+<br />
+{--GUEST_SPONSOR_TEASER_1--}<br />
+<br />
+{--GUEST_SPONSOR_TEASER_2--}<br />
+<br />
+{--GUEST_SPONSOR_TEASER_3--}<br />
+<br />
 <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">
 <TR>
index 1cb2b01a81925d4e8c08d9c5c83fdd4b101c382a..4d1b67c1200efb58f29ce1a710e102b8f52d005f 100644 (file)
@@ -25,7 +25,7 @@
 </TABLE>
 </DIV>
 
-<BR>
+<br />
 
 <DIV align="center">
 <TABLE border="0" cellspacing="0" cellpadding="0" width="90%"
@@ -53,7 +53,7 @@
 </TABLE>
 </DIV>
 
-<BR>
+<br />
 
 <DIV align="center">
 <TABLE border="0" cellspacing="0" cellpadding="0" width="90%"
index 969581792e1bacc15e5c16d60feb5e6423fe8c94..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,13 +0,0 @@
-<script language="JavaScript" type="text/javascript">
-<!--
-function BlurLinks()
-{
-NavLinks=document.getElementsByName('menu');
-for(i=0; i<NavLinks.length; i++)
-{
-NavLinks[i].onfocus=new Function("if(this.blur)this.blur()");
-}
-}
-onload=BlurLinks;
-//-->
-</script>
index ad9ca8f04771e68f7cc446a412019be61ef87bdf..6da43b199395ec84210317c9db4442660d5a671d 100644 (file)
@@ -8,15 +8,14 @@
        </TR>
        <TR>
                <TD class="impressum_body" width="5">&nbsp;</TD>
-               <TD class="impressum_body">Ihr Name hier!<BR>
-               Ihre Strasse<BR>
-               XX-12345 Demo-Dorf<BR>
-               <BR>
-               Tel.: +49(0)-123-456789<BR>
-               <BR>
-               Email: <A href="mailto:webmaster@blablabla.de">webmaster@blablabla.de</A><BR>
-               <BR>
-               <A href="http://www.disclaimer.de/disclaimer.htm">Disclaimer</A><BR>
+               <TD class="impressum_body">Ihr Name hier!<br />
+               Ihre Strasse<br />
+               XX-12345 Demo-Dorf<br />
+               <br />
+               Tel.: +49(0)-123-456789<br />
+               <br />
+               Email: <A href="mailto:{!WEBMASTER!}">{!WEBMASTER!}</A><br />
+               <br />
                </TD>
                <TD class="impressum_body" width="5">&nbsp;</TD>
        </TR>
@@ -24,4 +23,4 @@
                <TD colspan="3" class="impressum_body">&nbsp;</TD>
        </TR>
 </TABLE>
-</DIV>
\ No newline at end of file
+</DIV>
index 585216fbba69fe864e35ac3dd3aa11224897c9c2..3409b35e2b53791a86e12d7fd3bddcd54672c08f 100644 (file)
        </TR>
        <TR>
                <TD align="center" valign="bottom" height="9%"><FONT class="tiny">
-               <STRONG><U>Impressum:</U></STRONG><BR>
-               <P>Ihr Name hier, Ihre Stra&szlig;e, X-12345 Demo-Stadt<BR>
+               <STRONG><U>Impressum:</U></STRONG><br />
+               <P>Ihr Name hier, Ihre Stra&szlig;e, X-12345 Demo-Stadt<br />
                Tel.: 01234-56789-0, Email: <A
                        href="mailto:mail_NO_SPAM_@_NO_SPAM_provider.de">Webmaster</A></P>
                <P>Weitere Angaben? ...</P>
                <P>Gelinkte Seiten, die sich ausserhalb von {!URL!} befinden,
                mache ich mich nicht mit verantwortlich und distanziere mich hiermit
                ausdr&uuml;cklich von diesen und deren Inhalten! Bitte beachte den <A
-                       href="" target="_blank">Disclaimer</A>!<BR>
+                       href="" target="_blank">Disclaimer</A>!<br />
                </FONT></TD>
        </TR>
 </TABLE>
\ No newline at end of file
index eb91e9ec36050e0b73e85d17d2be3f5a95d6bed2..1a176abb2984b820af8982e6d34ab7b7e82e8985 100644 (file)
@@ -1,2 +1,2 @@
-<DIV class="install_fatalcontent"><STRONG>{--FATAL_NO--}$content[key]:</STRONG><BR>
+<DIV class="install_fatalcontent"><STRONG>{--FATAL_NO--}$content[key]:</STRONG><br />
 &nbsp;&nbsp;&nbsp;<STRONG>&middot;</STRONG>&nbsp;$content[value]</DIV>
index 16c162dc9429975d8d745f48c173ae81cb6ff147..8b2f148de253ff74345fe65fa2f6ecfe4cdaa2c3 100644 (file)
@@ -1,7 +1,7 @@
-<SPAN class="install_finished">{--INSTALL_FINISHED--}</SPAN><BR>
-<BR>
-<SPAN class="install_security">{--INSTALL_FIN_SECU--}</SPAN><BR>
-<BR>
+<SPAN class="install_finished">{--INSTALL_FINISHED--}</SPAN><br />
+<br />
+<SPAN class="install_security">{--INSTALL_FIN_SECU--}</SPAN><br />
+<br />
 <FORM action="modules.php" method="GET">
   <INPUT type="hidden" name="module" value="admin" />
   <INPUT type="submit" class="admin_submit submit" value="{--CONTINUE_ADMIN--}" class="install_submit" />
index 5d8ef46dce3ff035d92711917e4e986254c05aee..ba74432b30e8503a9518c8f254b71238bee82c35 100644 (file)
@@ -1,9 +1,9 @@
 <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>
+<br />
+<br />
+<br />
+<br />
+<br />
 {--LOADER_NOT_WORKING--} [
 <A href="{!__URL!}">{--LOADER_CLICK_HERE--}</A>
 ]
index 23deb223c21350ed9faaf05fa580410d82363be3..dcd8fe004278cb203ca5842c302627f71840b8db 100644 (file)
@@ -6,7 +6,7 @@
                <FORM
                        action="{!URL!}/mailid_top.php?uid={!_UID_VALUE!}&amp;{!_TYPE_VALUE!}={!_DATA_VALUE!}&amp;mode=add&amp;code={!_CODE_VALUE!}"
                        method="POST" style="margin-bottom: 0px">
-               {--MAILID_CLICK_BUTTON--}:<BR>
+               {--MAILID_CLICK_BUTTON--}:<br />
                <INPUT type="hidden" name="gfx_check" value="{!__GFX_CODE!}">
                <INPUT type="submit" class="member_submit" name="ok"
                        value="{--SUBMIT_CODE--}"></FORM>
index 197cdd13c1697380650076e6296c384b5d593579..f90ecdef64fe901d854f88e644e33ffb6a6d4a94 100644 (file)
@@ -6,7 +6,7 @@
                <FORM
                        action="{!URL!}/mailid_top.php?uid={!_UID_VALUE!}&amp;{!_TYPE_VALUE!}={!_DATA_VALUE!}&amp;mode=add&amp;code={--_CODE_VALUE!}"
                        method="POST" style="margin-bottom: 0px">{--ENTER_CODE--}:
-               {--_IMAGE_CODE--}<BR>
+               {--_IMAGE_CODE--}<br />
                <INPUT type="text" name="gfx_check" class="member_normal" size="5"
                        maxlength="45"> <INPUT type="submit" class="member_submit"
                        name="ok" value="{--SUBMIT_CODE--}"></FORM>
index 524cc64dc85fc9827e2d4bb4658677adf536e8d7..e9355adee5adcdd486bc6c56d8b2c51239b94e6c 100644 (file)
@@ -3,7 +3,7 @@
        <TR>
                <TD width="10" class="seperator">&nbsp;</TD>
                <TD width="220" align="center">{--THANX_POINTS_ADDED_1--}<STRONG
-                       class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_ADDED_2--}<BR>
+                       class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_ADDED_2--}<br />
                {--MAILID_TOTAL_POINTS1--} <STRONG class="member_done">{!__TOTAL_POINTS!}
                {!POINTS!}</STRONG> {--MAILID_TOTAL_POINTS2--}</TD>
                <TD width="10" class="seperator">&nbsp;</TD>
index 4f79841a47dca02c7f47fa021652bd7f37df224f..7002970ed724449b5f4b3bd1910bca2a7eb53409 100644 (file)
@@ -4,10 +4,10 @@
        <TR>
                <TD width="10" class="seperator">&nbsp;</TD>
                <TD width="220" align="center"><FONT class="tiny">
-               {--THANX_POINTS_ADDED_1--}<STRONG class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_ADDED_2--}<BR>
+               {--THANX_POINTS_ADDED_1--}<STRONG class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_ADDED_2--}<br />
                {--MAILID_TOTAL_POINTS1--} <STRONG class="member_done">{!__TOTAL_POINTS!}
-               {!POINTS!}</STRONG> {--MAILID_TOTAL_POINTS2--}<BR>
-               <BR>
+               {!POINTS!}</STRONG> {--MAILID_TOTAL_POINTS2--}<br />
+               <br />
                <A
                        href="{!URL!}/show_bonus.php?uid={!_UID_VALUE!}&amp;t={!_TYPE_VALUE!}&amp;d={!_DATA_VALUE!}"
                        target="_blank">{--BONUS_SHOW_TURBO_BONUS--} </FONT></TD>
index 6dbdfb88a573fe8fb75e4d33db5843005a9f92dd..ef57215b0fd0fb05d3123ff197b98423747ab322 100644 (file)
@@ -3,7 +3,7 @@
        <TR>
                <TD width="10" class="seperator">&nbsp;</TD>
                <TD width="220" align="center">{--THANX_POINTS_LOCKED_1--}<STRONG
-                       class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_LOCKED_2--}<BR>
+                       class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_LOCKED_2--}<br />
                </TD>
                <TD width="10" class="seperator">&nbsp;</TD>
                <TD align="center">
index dd91207aa7396f8925ab126cbf44776310b54d8f..e018021d4e47ca1db92c0a51db1cb5a1f4dbec05 100644 (file)
@@ -4,8 +4,8 @@
        <TR>
                <TD width="10" class="seperator">&nbsp;</TD>
                <TD width="220" align="center"><FONT class="tiny">
-               {--THANX_POINTS_LOCKED_1--}<STRONG class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_LOCKED_2--}<BR>
-               <BR>
+               {--THANX_POINTS_LOCKED_1--}<STRONG class="member_done">{--_POINTS_VALUE!}</STRONG>&nbsp;{--THANX_POINTS_LOCKED_2--}<br />
+               <br />
                <A
                        href="{!URL!}/show_bonus.php?uid={!_UID_VALUE!}&amp;t={!_TYPE_VALUE!}&amp;d={!_DATA_VALUE!}"
                        target="_blank">{--BONUS_SHOW_TURBO_BONUS--} </FONT></TD>
index 29e73da4e69c9f68c22c599d90dd92c81809de38..92cd32dafa5d5502d97343e798c074d8046cc5f8 100644 (file)
        <TR>
                <TD class="bottom seperator" width="10" rowspan="4">&nbsp;</TD>
                <TD class="bottom medium" align="center" colspan="3">
-               {--ENGINE_SOFTWARE--}:<BR>
+               {--ENGINE_SOFTWARE--}:<br />
                <STRONG>{!TITLE!}</STRONG></TD>
                <TD class="bottom seperator" width="10" rowspan="4z">&nbsp;</TD>
        </TR>
index 0c944bcd4eab2813df27846f49aff4298400973f..89d8903ce8173cd773be0bdcd8fcaf6689757184 100644 (file)
@@ -7,7 +7,7 @@
        </TR>
        <TR>
                <TD align="center" class="beg_msg" height="60">
-               {--BEG_MEMBER_YOUR_LINK--}:<BR>
+               {--BEG_MEMBER_YOUR_LINK--}:<br />
                <STRONG><A href="{!URL!}/beg.php?uid={!__BEG_UID!}">{!URL!}/beg.php?uid={!__BEG_UID!}</A></STRONG>
                </TD>
        </TR>
@@ -16,7 +16,7 @@
        </TR>
        <TR>
                <TD align="center" class="beg_msg" height="60">
-               {--BEG_MEMBER_CLICKS_TOTAL--}:<BR>
+               {--BEG_MEMBER_CLICKS_TOTAL--}:<br />
                <STRONG>{--__BEG_CLICKS--}</STRONG></TD>
        </TR>
        <TR>
index 5ad30a9b44f9e354d9a6fdba033a79e2029996b4..b105e03f6eb2d7031d85cfda01753a82d8049b98 100644 (file)
@@ -1,5 +1,5 @@
-<P align="center"><STRONG>{--BONUS_MEMBER_HERE_IS_THE_LIST--}</STRONG><BR>
-<BR>
+<P align="center"><STRONG>{--BONUS_MEMBER_HERE_IS_THE_LIST--}</STRONG><br />
+<br />
 <TABLE border="0" cellspacing="0" cellpadding="0" width="520"
        class="member_table dashed">
        <TR>
@@ -16,7 +16,7 @@
                <FONT class="tiny member_note">{--BONUS_RALLYE_NOTE--}</FONT></TD>
        </TR>
 </TABLE>
-<BR>
+<br />
 
 <TABLE border="0" cellspacing="0" cellpadding="0" width="90%"
        class="member_table dashed">
index 1ffe3f93975580cf75cbaec43eb68bce02a82f28..2d7b822469aa486639410bc3c12f411247aa14d4 100644 (file)
@@ -1,18 +1,18 @@
-<DIV align="center">{--DOUBLER_MEMBER_YOUR_LINK--}:<BR>
-<STRONG><A href="{!URL!}/doubler.php?refid={--__USERID--}">{!URL!}/doubler.php?refid={--__USERID--}</A></STRONG><BR>
-<BR>
+<DIV align="center">{--DOUBLER_MEMBER_YOUR_LINK--}:<br />
+<STRONG><A href="{!URL!}/doubler.php?refid={--__USERID--}">{!URL!}/doubler.php?refid={--__USERID--}</A></STRONG><br />
+<br />
 {--DOUBLER_MEMBER_LINK_NOTE--}</DIV>
 
-<P align="center"><STRONG class="big">{--DOUBLER_MEMBER_ALREADY_PAYOUT--}:</STRONG><BR>
-<BR>
+<P align="center"><STRONG class="big">{--DOUBLER_MEMBER_ALREADY_PAYOUT--}:</STRONG><br />
+<br />
 {!__DOUBLER_PAYOUT_HISTORY!}</P>
 
-<P align="center"><STRONG class="big">{--DOUBLER_MEMBER_NEXT_PAYOUT--}:</STRONG><BR>
-<BR>
+<P align="center"><STRONG class="big">{--DOUBLER_MEMBER_NEXT_PAYOUT--}:</STRONG><br />
+<br />
 {!__DOUBLER_PAYOUT_NEXT!}</P>
 
-<P align="center"><STRONG class="big">{--DOUBLER_MEMBER_REF_PAYOUT--}:</STRONG><BR>
-<BR>
+<P align="center"><STRONG class="big">{--DOUBLER_MEMBER_REF_PAYOUT--}:</STRONG><br />
+<br />
 {--__DOUBLER_PAYOUT_REF--}</P>
 
 <DIV align="center">
index d469e344a4b1aa106025357cd4313878208e1964..03de59e824a5f4168b42ea84ab45d588e170cc8f 100644 (file)
@@ -8,7 +8,7 @@
                                <STRONG><BIG>-&nbsp;-&nbsp;- <A title="{!MAIN_TITLE!}"
                                        style="cursor: default; background: none; text-decoration: none"
                                        class="member_header">{!MAIN_TITLE!}</A>&nbsp;-&nbsp;-&nbsp;-</BIG></STRONG>
-                               <BR>
+                               <br />
                        </TD>
                </TR>
                <TR>
index d0aa7aab77f33e99fc31818624e83684c2fd1b3c..afcea270b677a08e670293c5c3a2fd1478da72e3 100644 (file)
@@ -41,7 +41,7 @@
                <TD colspan="3" class="seperator" height="5">&nbsp;</TD>
        </TR>
        <TR>
-               <TD colspan="3" align="center">{--HOLIDAY_COMMENTS--}:<BR>
+               <TD colspan="3" align="center">{--HOLIDAY_COMMENTS--}:<br />
                <TEXTAREA name="comments" class="member_normal" cols="50" rows="6"></TEXTAREA>
                </TD>
        </TR>
index 95731f3a61f7779e6a8b88183053c89a191af9e9..f2f33805671326c7be3610f78c5100413b8071db 100644 (file)
@@ -1,5 +1,5 @@
-<P align="center"><STRONG>{--BEG_MEMBER_HERE_IS_THE_LIST--}</STRONG><BR>
-<BR>
+<P align="center"><STRONG>{--BEG_MEMBER_HERE_IS_THE_LIST--}</STRONG><br />
+<br />
 <TABLE border="0" cellspacing="0" cellpadding="0" width="520"
        class="member_table dashed">
        <TR>
@@ -15,7 +15,7 @@
                <FONT class="tiny member_note">{--BEG_RALLYE_NOTE--}</FONT></TD>
        </TR>
 </TABLE>
-<BR>
+<br />
 
 <TABLE border="0" cellspacing="0" cellpadding="0" width="90%"
        class="member_table dashed">
index 3c3e574f54f1eb9dad6b2f9ec225901fd576c0cb..3f9184d7e994c33eaa6e5750c5538e18e1339c3a 100644 (file)
@@ -10,8 +10,8 @@
        <TR>
                <TD align="right" height="30" width="320">
                {--NL_MEMBER_RECEIVE_STATUS--}:</TD>
-               <TD width="200">&nbsp;<STRONG>{--__STATUS_VALUE!}</STRONG><BR>
-               <FONT class="tiny">{--__UNTIL_VALUE!}</FONT></TD>
+               <TD width="200">&nbsp;<STRONG>{!__STATUS_VALUE!}</STRONG><br />
+               <FONT class="tiny">{!__UNTIL_VALUE!}</FONT></TD>
        </TR>
        <TR>
                <TD class="bottom2" colspan="2" align="center"
index a7d696c8a717c5030d4614ae67ec1918dd761a03..1a55feedf27757de6ce2c746944b09e2a8754823 100644 (file)
@@ -2,14 +2,14 @@
        <TR>
                <TD>Unseren {!MT_WORD!} <STRONG>{!MAIN_TITLE!}</STRONG>
                finanzieren wir zum Teil durch Werbung, die Sie ohne Verg&uuml;tung
-               von uns ab und an in Form von Newslettern bekommen.<BR>
-               <BR>
+               von uns ab und an in Form von Newslettern bekommen.<br />
+               <br />
                Damit wir unseren Service weiterhin <STRONG>kostenlos</STRONG> Ihnen
                anbieten k&ouml;nnen, aber gleichzeitig auch die Kosten des durch Sie
                verursachten Transfervolumens wieder reinbekommen, m&ouml;chten wir
                Sie um eine kleine Spende bitten, die wir
-               &quot;Abbestellgeb&uuml;hr&quot; nennen.<BR>
-               <BR>
+               &quot;Abbestellgeb&uuml;hr&quot; nennen.<br />
+               <br />
                Sie finden diese weiter oben. Sollten Sie damit dennoch nicht
                einverstanden sein, k&ouml;nnen wir gerne Ihren Account l&ouml;schen.
                Sie erhalten dann auch keine weiteren Mails mehr von uns.</TD>
index 3f2812e297e28a0113ced9427e4ec20b68eb13b9..b08fb57395ec148f12bffe5e46db421fe48d32cd 100644 (file)
@@ -1,8 +1,8 @@
 <FORM action="{!URL!}/modules.php" method="GET"><INPUT
        type="hidden" name="module" value="login"> <INPUT type="hidden"
        name="what" value="order"> <STRONG><SPAN
-       class="member_done">{--MEMBER_THANX_ORDER--}</SPAN></STRONG><BR>
-<BR>
-<BR>
+       class="member_done">{--MEMBER_THANX_ORDER--}</SPAN></STRONG><br />
+<br />
+<br />
 <INPUT type="submit" class="member_reset"
        value="{--MEMBER_CONTINUE_AREA--}"></FORM>
\ No newline at end of file
index b7ed4cb85e7e09b3b22ba9003564262a5db528c2..72196bfd3ea0a6383c85daccb300dd28bf30aa7a 100644 (file)
@@ -1,6 +1,6 @@
 <TR>
        <TD width="10" class="top2 bottom2 seperator">&nbsp;</TD>
-       <TD class="top2 bottom2" colspan="3" align="center"><STRONG>{--MEMBER_HTML_VALID_TAGS--}:</STRONG><BR>
+       <TD class="top2 bottom2" colspan="3" align="center"><STRONG>{--MEMBER_HTML_VALID_TAGS--}:</STRONG><br />
        $content <INPUT type="hidden" name="html" value="Y"></TD>
        <TD width="10" class="top2 bottom2 seperator">&nbsp;</TD>
 </TR>
index 34623edd82d97b43660983db57413c018013cd7a..6ac88d6896ea4f8b28840f7c4e80e2955ea53bde 100644 (file)
@@ -7,8 +7,8 @@
 </TR>
 <TR>
        <TD colspan="2" align="center">Geben Sie hier die ersten ein bis
-       drei Stellen der Postleitzahl ein, in der gesendet werden soll.<BR>
-       <BR>
+       drei Stellen der Postleitzahl ein, in der gesendet werden soll.<br />
+       <br />
        Beispiele:
        <UL>
                <LI><STRONG>1</STRONG> : Sendet nur an Mitglieder, deren
@@ -18,7 +18,7 @@
                <LI><STRONG>123</STRONG> : Sendet nur an Mitglieder, deren
                Postleitzahl mit 123 anf&auml;ngt.</LI>
        </UL>
-       <BR>
+       <br />
        Oder geben Sie nichts ein, wenn Sie diese Option nicht w&uuml;nschen.</TD>
 </TR>
 <TR>
index 5bbf7853c80b9754833aa9a1c5b007efce77b3d6..d67f04b786363d6165c1a6ae89572810f2c306f7 100644 (file)
@@ -69,7 +69,7 @@
        </TR>
        <TR>
                <TD width="10" class="seperator">&nbsp;</TD>
-               <TD colspan="3" align="center" class="member_note"><STRONG>{--MEMBER_PLEASE_NOTE--}</STRONG><BR>
+               <TD colspan="3" align="center" class="member_note"><STRONG>{--MEMBER_PLEASE_NOTE--}</STRONG><br />
                </TD>
                <TD width="10" class="seperator">&nbsp;</TD>
        </TR>
index 07dfe468f7da7b1dff6f75ddc08ffe5713c3bb92..c2ae4fdb0110c60d6b7eae9931d7f0a538bfe35c 100644 (file)
@@ -4,16 +4,16 @@
        <TR>
                <TD align="center" height="50" class="member_main"
                        style="padding-left: 5px; padding-right: 5px">
-               {--MEMBER_POINTS_LEFT--}:<BR>
+               {--MEMBER_POINTS_LEFT--}:<br />
                <SPAN class="member_done"><STRONG>$content</STRONG> {!POINTS!}</SPAN>
                </TD>
        </TR>
        <TR>
                <TD align="center" height="50" class="member_main"
                        style="padding-left: 5px; padding-right: 5px">
-               {--MEMBER_ORDER_MAX_ALLOWED--}:<BR>
-               <SPAN class="member_done">{--ORDER_MAX_VALUE!}</SPAN></TD>
+               {--MEMBER_ORDER_MAX_ALLOWED--}:<br />
+               <SPAN class="member_done">{!ORDER_MAX_VALUE!}</SPAN></TD>
        </TR>
 </TABLE>
 </DIV>
-<BR>
\ No newline at end of file
+<br />
index d89a3719459622881e1a56a582d285e1a0f8c06b..35bed44ab986f1e38074acf61207b970c3fbfb81 100644 (file)
@@ -51,8 +51,8 @@
                        value="{--PAYOUT_SEND_NOW--}"></TD>
        </TR>
 </TABLE>
-<BR>
-<STRONG class="member_note"> {--PAYOUT_MEMBER_NOTE--}<BR>
-<BR>
+<br />
+<STRONG class="member_note"> {--PAYOUT_MEMBER_NOTE--}<br />
+<br />
 <A href="{!URL!}/agb.php" target="_blank">{--PAYOUT_REMEMBER_TERMS--}</A>
 </STRONG></FORM>
index 2b518928fdcba8b92b6d7e4b24f8484181326a40..0eac20d7899995568fbce353d97a51dbd6a044e3 100644 (file)
        <TR>
                <TD width="215" height="20" align="right">{--PAYOUT_SELECTED_TYPE--}:</TD>
                <TD width="10" class="seperator">&nbsp;</TD>
-               <TD width="215"><STRONG>{--PAYOUT_TYPE_VALUE!}</STRONG></TD>
+               <TD width="215"><STRONG>{!PAYOUT_TYPE_VALUE!}</STRONG></TD>
        </TR>
        <TR>
                <TD height="25" align="right">{--PAYOUT_MAX_PAYOUT--}:</TD>
                <TD class="seperator" width="10">&nbsp;</TD>
-               <TD><STRONG>{--PAYOUT_MAX_VALUE!}</STRONG></TD>
+               <TD><STRONG>{!PAYOUT_MAX_VALUE!}</STRONG></TD>
        </TR>
        <TR>
                <TD height="25" align="right">{--PAYOUT_WANT_PAYOUT--}:</TD>
@@ -54,7 +54,7 @@
                        value="{--PAYOUT_SEND_NOW--}"></TD>
        </TR>
 </TABLE>
-<BR>
+<br />
 <!-- Hinweise zur "Auszahlung" in Bannerviews, Textlinkklicks, etc. -->
 <STRONG class="member_note">(*):&nbsp;{--PAYOUT_BANNER_NOTE--}</STRONG>
 <!-- Hinweise zur "Auszahlung" in Bannerviews, Textlinkklicks, etc. -->
index 8b077cacecb6dc5e2e1fb4a1a9cbbb799bc1c5de..fa20f5433fcb68eca52473e36bfadd081d639b8b 100644 (file)
@@ -1,7 +1,7 @@
 <TR>
        <TD width="10" class="member_refbanner switch_sw$content[sw]">&nbsp;</TD>
        <TD align="center" class="member_refbanner switch_sw$content[sw]">
-               <IMG src="$content[url]" alt="$content[alt]" title="$content[alt]" border="0"><BR>
+               <IMG src="$content[url]" alt="$content[alt]" title="$content[alt]" border="0"><br />
                <FONT class="tiny">{--REFBANNER_TOTALS--}:
                        <STRONG>$content[cnt]</STRONG>&nbsp;{--REF_VIEWS--} /
                        <STRONG>$content[cks]</STRONG>&nbsp;{--REF_CLIX--}
index b92598825d07a8a7a8fa56b76e5bbb8de899600b..3f6ea7ecd85aeffc96f9add87bdb9e560b07a75d 100644 (file)
@@ -1,36 +1,36 @@
 <TR>
        <TD class="switch_mem$content[sw] top2 right" width="46%" colspan="2"
-               align="center">{--EMAIL_SUBJECT--}:<BR>
+               align="center">{--EMAIL_SUBJECT--}:<br />
        <STRONG>$content[subj]</STRONG></TD>
        <TD class="switch_mem$content[sw] top2" width="54%" align="center">
-       {--EMAIL_TIMESTAMP--}:<BR>
+       {--EMAIL_TIMESTAMP--}:<br />
        <STRONG>$content[stamp]</STRONG></TD>
 </TR>
 <TR>
        <TD colspan="2" align="center" class="switch_mem$content[sw] top right">
-       {--EMAIL_PAYMENT--}:<BR>
+       {--EMAIL_PAYMENT--}:<br />
        <STRONG>$content[pay]</STRONG></TD>
        <TD align="center" class="switch_mem$content[sw] top">
-       {--EMAIL_CATEGORY--}:<BR>
+       {--EMAIL_CATEGORY--}:<br />
        <STRONG>$content[cat]</STRONG></TD>
 </TR>
 <TR>
        <TD colspan="2" align="center" class="switch_mem$content[sw] top right">
-       {--EMAIL_URL--}:<BR>
+       {--EMAIL_URL--}:<br />
        <STRONG><A href="$content[url]" target="_blank">{--MEMBER_TEST_URL--}</A></STRONG>
        </TD>
        <TD align="center" class="switch_mem$content[sw] top">
-       {--EMAIL_END_SEND--}:<BR>
+       {--EMAIL_END_SEND--}:<br />
        <STRONG>$content[sent]</STRONG></TD>
 </TR>
 <TR>
        <TD align="center" class="switch_mem$content[sw] top right" width="23%">
-       {--EMAIL_RECEIVERS--}:<BR>
+       {--EMAIL_RECEIVERS--}:<br />
        <STRONG>$content[recs]</STRONG></TD>
        <TD align="center" class="switch_mem$content[sw] top right" width="23%">
-       {--EMAIL_CONFIRMED--}:<BR>
+       {--EMAIL_CONFIRMED--}:<br />
        <STRONG>$content[clix]</STRONG></TD>
        <TD align="center" class="switch_mem$content[sw] top">
-       {--EMAIL_PERCENT--}:<BR>
+       {--EMAIL_PERCENT--}:<br />
        <STRONG>$content[perc]</STRONG></TD>
 </TR>
index fc79d8da5e47ae75192f18988f2eb91806f91179..2488c8eb6ab377b6cd5eb3247e96786e6e56c348 100644 (file)
@@ -7,9 +7,9 @@
        </TR>
        <TR>
                <TD align="center" colspan="2" class="left2 right2"><STRONG>Sie
-               haben eine Frage an unseren Support?</STRONG><BR>
+               haben eine Frage an unseren Support?</STRONG><br />
                <HR noshade width="400">
-               <DIV align="left"><PRE style="margin-bottom: 0px">Hallo Support-Team,<BR>
+               <DIV align="left"><PRE style="margin-bottom: 0px">Hallo Support-Team,<br />
   Meine ID bei Ihrem {!MT_WORD!} lautet: $ID
 </PRE></DIV>
                </TD>
@@ -27,9 +27,9 @@
        <TR>
                <TD align="center" class="left2 right2">
                <DIV align="left"><PRE style="margin-bottom: 5px">Ich m&ouml;chte es genauer beschreiben:</PRE></DIV>
-               <TEXTAREA name="qdetails" rows="5" cols="35" class="member_normal"></TEXTAREA><BR>
+               <TEXTAREA name="qdetails" rows="5" cols="35" class="member_normal"></TEXTAREA><br />
                <FONT class="tiny member_note"> (Bitte halten Sie den Text kurz
-               und knapp, damit Ihre<BR>
+               und knapp, damit Ihre<br />
                Support-Anfrage schnell beantwortet werden kann!) </FONT></TD>
        </TR>
        <TR>
index bd6cfcb1baa35a713df24fdc1bf11cdc71712adc..69b9e65d8896b9ce6f0694587fbf57fb40cc3e8d 100644 (file)
@@ -3,19 +3,19 @@
        class="member_table dashed">
        <TR>
                <TD align="center" width="260" class="bottom2 right2" height="40">
-               {--TRANSFER_LIST_INCOMING--}:<BR>
+               {--TRANSFER_LIST_INCOMING--}:<br />
                <STRONG>{--__TRANSFER_IN_LINK--}</STRONG></TD>
                <TD align="center" width="260" class="bottom2">
-               {--TRANSFER_LIST_OUTGOING--}:<BR>
+               {--TRANSFER_LIST_OUTGOING--}:<br />
                <STRONG>{--__TRANSFER_OUT_LINK--}</STRONG></TD>
        </TR>
        <TR>
                <TD align="center" colspan="2" height="40" class="bottom2">
-               {--TRANSFER_LIST_ALL--}:<BR>
+               {--TRANSFER_LIST_ALL--}:<br />
                <STRONG>{--__TRANSFER_ALL_LINK--}</STRONG></TD>
        </TR>
        <TR>
-               <TD align="center" colspan="2" height="40" class="bottom2"><STRONG>{--TRANSFER_TO_MEMBER_NOW--}:</STRONG><BR>
+               <TD align="center" colspan="2" height="40" class="bottom2"><STRONG>{--TRANSFER_TO_MEMBER_NOW--}:</STRONG><br />
                {--__TRANSFER_NEW_LINK--}</TD>
        </TR>
        <TR>
index 74381b4c03933fcd16dc101cc3c48cbca18be2cb..3684669ba1994101d2ac5c0dddba1bbab5ecc1da 100644 (file)
@@ -1,7 +1,7 @@
 <TABLE border="0" cellspacing="0" cellpadding="0" width="100%">
        <TR>
                <TD width="10" class="seperator">&nbsp;</TD>
-               <TD class="member_content">{--LAST_ONLINE--}: <STRONG>{!_LAST_ONLINE_VALUE!}</STRONG><BR>
+               <TD class="member_content">{--LAST_ONLINE--}: <STRONG>{!_LAST_ONLINE_VALUE!}</STRONG><br />
                {--LAST_MODULE--}: <STRONG>{!_LAST_MODULE_VALUE!}</STRONG></TD>
        </TR>
        <TR>
index ab3ac9b3b152e20685c89d155a85c3a6de98a3ae..e09a4dfccef42f4bac761f37930b4c9fbaec4200 100644 (file)
@@ -45,7 +45,7 @@
 </TABLE>
 </FORM>
 
-<DIV class="member_note">{--WERNIS_MEMBER_NOTE--}<BR>
-<BR>
+<DIV class="member_note">{--WERNIS_MEMBER_NOTE--}<br />
+<br />
 <A href="{!URL!}/agb.php" target="_blank">{--WERNIS_REMEMBER_TERMS--}</A>
 </DIV>
index a351d0a754e20b34f7cb6b55d89720267d39069e..8122716ad77a476f69fc8e86ba297b0d1252d5cf 100644 (file)
@@ -42,6 +42,6 @@
                </TD>
        </TR>
 </TABLE>
-<BR>
+<br />
 <STRONG class="member_note"> {--WERNIS_MEMBER_PAYOUT_NOTE--}</STRONG>
 </FORM>
index e6816291be14708e3bfea321fd322e7737790c79..46787a1634c1f30cb95953948b2356e831b03065 100644 (file)
@@ -42,6 +42,6 @@
                </TD>
        </TR>
 </TABLE>
-<BR>
+<br />
 <STRONG class="member_note"> {--WERNIS_MEMBER_WITHDRAW_NOTE--}</STRONG>
 </FORM>
index c1e6e607a33ed3c21748b00818c520f41edbf273..6abeb25cbfde027e449bdb61b9136e127c92a61c 100644 (file)
@@ -1,4 +1,5 @@
-<TR>
-       <TD colspan="2" align="center" valign="middle" class="guest"
-               height="30">$content</TD>
-</TR>
+<tr>
+       <td colspan="2" align="center" valign="middle" class="guest" height="30">
+               $content
+       </td>
+</tr>
index c8ff9cffa46fd780fe7799191b717b790f33b087..08e5e4612ba184e02b46a67c6038cd9147baa49e 100644 (file)
@@ -1,10 +1,8 @@
-
-<META name="author" content="Roland H&auml;der">
-<META name="publisher" content="Ihr Name nochmal">
-<META name="keywords"
-       content="mailtausch, mailversand, kostenlos, kostenloser, mailexchange, werbemail, werbemailversand, exchange, werbepunkte, punkte, auktion, auktionen, umsonst, sms kostenlos, produkte, produktproben, gewinn, gewinnspiel, gratis sms, promotion, besucher, werbung, linkliste, geldverdienen, verdienen, traffic, hits">
-<META name="robots" content="index,follow">
-<META http-equiv="content-type" content="text/html; charset=ISO-8859-1">
-<META http-equiv="content-style-type" content="text/css">
-<META http-equiv="content-script-type" content="text/javascript">
-<META http-equiv="language" content="de">
+<meta name="author" content="Roland H&auml;der" />
+<meta name="publisher" content="Ihr Name nochmal" />
+<meta name="keywords" content="mailtausch, mailversand, kostenlos, kostenloser, mailexchange, werbemail, werbemailversand, exchange, werbepunkte, punkte, auktion, auktionen, umsonst, sms kostenlos, produkte, produktproben, gewinn, gewinnspiel, gratis sms, promotion, besucher, werbung, linkliste, geldverdienen, verdienen, traffic, hits" />
+<meta name="robots" content="index,follow" />
+<meta http-equiv="content-type" content="text/html; charset=UTF8" />
+<meta http-equiv="content-style-type" content="text/css" />
+<meta http-equiv="content-script-type" content="text/javascript" />
+<meta http-equiv="language" content="de" />
index e8c20018fefd1109b88d1b1f15467ec164d54afe..cdfab7fbac2fe39ad7585bb97b197710a9480186 100644 (file)
@@ -1,5 +1,5 @@
-<BODY>
-<TABLE border="0" cellspacing="0" cellpadding="0" id="master">
-       <TR>
-               <TD class="masterbox" align="center">
-               <DIV class="masterbox">
\ No newline at end of file
+<body>
+<table border="0" cellspacing="0" cellpadding="0" id="master">
+       <tr>
+               <td class="masterbox" align="center">
+               <div class="masterbox">
index fa6d2269a4c7fc13e8dcd03ad0252a658c69a005..0aa8bb4b33743440e86788a703e9a53bdd399612 100644 (file)
@@ -1,4 +1,4 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html>
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
 <head>
-<title>{!__PAGE_TITLE!}</title>
\ No newline at end of file
+<title>{!__PAGE_TITLE!}</title>
index 71eb6031326b9e40187adb78854215ab892269ff..29129c33514fa77beec0a7b5d3915a3d775c3d16 100644 (file)
                                <TD align="left">
                                <DIV align="center"><STRONG>Vielen Dank, dass Sie uns
                                auf dem Laufenden halten wollen!</STRONG></DIV>
-                               <BR>
+                               <br />
                                Wenn Sie jetzt Ihr Profil aktualisieren wollen, klicken Sie einfach
                                unten auf den Button. War unsere Benachrichtigung ein Irrtum, so
                                k&ouml;nnen Sie mit einem Klick die Benachrichtigung abschalten. Sie
                                werden dann f&uuml;r l&auml;ngere Zeit von unserem System keine
-                               Benachrichtigungen erhalten.<BR>
-                               <BR>
+                               Benachrichtigungen erhalten.<br />
+                               <br />
                                Bitte haben Sie nochmals f&uuml;r diese Massnahme Verst&auml;ndnis.
                                Auch wir m&ouml;chten aktuelle Daten haben, damit wir unseren
                                {!MT_WORD!} reibungslos betreiben k&ouml;nnen und es kommt auch
index 9814383f6b9cae25ce711564e2023195d02d59a6..d04e6c4d604849a438943b29d6b245edc2373221 100644 (file)
@@ -1,6 +1,3 @@
-Dieses Template heisst rallye_test.tpl.de, das Sie gerne weiter
-verwenden k&ouml;nnen:
-<BR>
-<BR>
-Speichern Sie eine Textdatei ab, die rallye_?????.tpl.de heissen muss.
-Anstelle der ? dann den Namen!
+Dieses Template heisst rallye_test.tpl.de, das Sie gerne weiter verwenden k&ouml;nnen:<br />
+<br />
+Speichern Sie eine Textdatei ab, die rallye_?????.tpl.de heissen muss. Anstelle der ? dann den Namen!
index 104a244f8f794fa6a9714f1ae6ff4573213f4687..342198313225a8323a479d2fe3eab938ff0d41aa 100644 (file)
@@ -1,2 +1,2 @@
-<DIV class="runtime_fatalcontent"><STRONG>{--FATAL_NO--}$content[key]:</STRONG><BR>
+<DIV class="runtime_fatalcontent"><STRONG>{--FATAL_NO--}$content[key]:</STRONG><br />
 &nbsp;&nbsp;&nbsp;<STRONG>&middot;</STRONG>&nbsp;$content[value]</DIV>
index e42d028149fdbc859e4c2d545b854e0884d8208a..e14fde0204ae4ad92e4bd8e0e61851b5eed41640 100644 (file)
@@ -1,13 +1,13 @@
 {--HELLO--} {!__SALUT!} {!__SNAME!} {!__FNAME!}!
-<BR>
-<BR>
+<br />
+<br />
 {--BONUS_SHOW_HEADER_LINE_1--}
 <STRONG>{!POINTS!}</STRONG>
 {--BONUS_SHOW_HEADER_LINE_2--}
 <STRONG>{!__MAILID!}</STRONG>
 {--BONUS_SHOW_HEADER_LINE_3--}:
-<BR>
-<BR>
+<br />
+<br />
 <TABLE border="0" cellspacing="0" cellpadding="0" width="300" class="member_table dashed">
        <TR>
                <TD width="80" align="center" class="member_header bottom2"><STRONG>{!BONUS_RANK!}:</STRONG></TD>
@@ -23,5 +23,5 @@
 
 <P>{!__YOUR_RANKING_LINE!}</P>
 
-<P><FONT class="member_note"> {--BONUS_SHOW_FOOTER_NOTE_1--}<BR>
+<P><FONT class="member_note"> {--BONUS_SHOW_FOOTER_NOTE_1--}<br />
 {--BONUS_SHOW_FOOTER_NOTE_2--} </FONT></P>
index 2bbfd6b3ce3f6b2a56c56e9cfa55da2a0904265f..a8120888baea4a0369f78e9b320388cab9a49984 100644 (file)
@@ -1,2 +1,2 @@
-<STRONG class="big">{--SPONSOR_WELCOME_TO--}</STRONG><BR>
+<STRONG class="big">{--SPONSOR_WELCOME_TO--}</STRONG><br />
 {--MAIN_TITLE--}
index 42d8569470dea97a6fbc4c7f5fce58c6a7290754..75dfb7a9cf114fe84a3140bc9c845fb6622431d8 100644 (file)
@@ -1,5 +1,5 @@
-Hallo {--__SALUT--} {--__SURNAME--} {--__FAMILY--}!<BR>
-<BR>
-Sch&ouml;n, dass wir Sie wieder in unserem Sponsorenbereich begr&uuml;ssen d&uuml;rfen!<BR>
-<BR>
+Hallo {--__SALUT--} {--__SURNAME--} {--__FAMILY--}!<br />
+<br />
+Sch&ouml;n, dass wir Sie wieder in unserem Sponsorenbereich begr&uuml;ssen d&uuml;rfen!<br />
+<br />
 Sie haben noch {--__POINTS--} {--POINTS--} f&uuml;r weitere Sponsorenaktionen &uuml;brig.
index fc69573cef87fac4ede00649eba21accd7060c60..b02f8132f462e21120c4c4f50317256d71f031a9 100644 (file)
@@ -1,5 +1,5 @@
 {--CURR_THEME_IS_1--}
-<BR>
+<br />
 <FONT class="theme_note">{--__THEME_NAME--}</FONT>
-<BR>
+<br />
 {--CURR_THEME_IS_2--}
index 418edcee2a2e4cc3ef75e0d3ebe235b4d58a1f90..78ff6616ef8d96f334eec4e91fdfd4222b6624bb 100644 (file)
@@ -1,6 +1,6 @@
 <DIV align="center"><STRONG>Willkommen zu unserem
 {!MT_WORD!}!</STRONG></DIV>
-<BR>
+<br />
 Nach der Anmeldung bei uns, bekommen Sie in regelm&auml;&szlig;igen
 Abst&auml;nden Webtipps und Produktinformationen per Email zugesendet.
 Nachdem Sie die Mails gelesen haben, k&ouml;nnen Sie diese
@@ -11,19 +11,19 @@ sp&auml;ter in Mails tauschen und verschiedene Mails mit Ihrer Werbung
 (zum Beispiel Werbung f&uuml;r Ihre Homepage, f&uuml;r ein anderes
 Projekt oder Produkt Ihrer Wahl) an andere User senden. Die Teilnahme
 ist selbstverst&auml;ndlich kostenlos und verpflichtet Sie zu nichts !
-<BR>
-<BR>
+<br />
+<br />
 Als Startguthaben erhalten Sie von uns f&uuml;r Ihre kostenlose
 Anmeldung derzeit
-<BR>
-<BR>
+<br />
+<br />
 <DIV align="center"><BIG><BIG>2000</BIG>&nbsp;{!POINTS!}!</BIG></DIV>
-<BR>
+<br />
 F&uuml;r jeden User, den Sie geworben haben erhalten Sie
 <STRONG>200</STRONG>
 &nbsp;{!POINTS!} plus prozentualen Verdienst &uuml;ber 5 Referral-Ebenen
 hinweg!
-<BR>
-<BR>
+<br />
+<br />
 Angesammelte {!POINTS!} k&ouml;nnen Versteigert oder Verkauft werden Der
 K&auml;ufer muss dabei jedoch Mitglied bei uns sein oder werden..
index 5a00be054d6bb9c23c07f9513f3684ff19cf6726..1b8af306afa8d1c91a12d80af9cf7fced3f28592 100644 (file)
@@ -1,3 +1,3 @@
 <STRONG>: : : Welcome to the administration&#39;s area : : :</STRONG>
-<BR>
+<br />
 <DIV align="left" class="tiny">Hello $username !</DIV>
\ No newline at end of file
index ce23cb7da81c1cf98799ef643271f1c03b0046b5..22ef495eb29eb0063bb67a02f0dcdd114560c750 100644 (file)
@@ -1,13 +1,13 @@
 <STRONG><U>Impressum</U></STRONG>
-<BR>
-<BR>
+<br />
+<br />
 Your name here!
-<BR>
+<br />
 Your street
-<BR>
+<br />
 XX-12345 Demo Village
-<BR>
-<BR>
+<br />
+<br />
 Phone: +49(0)-123-456789
-<BR>
+<br />
 Additional informations?