<HTML><HEAD>
<META charset=UTF-8 http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.2733.1800" name=GENERATOR></HEAD>
<BODY style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; BACKGROUND-COLOR: #ffffff">
<DIV>
<DIV>My email client (aol sucks)&nbsp;wrapped the text on that, sorry about that. If you still have troubles,&nbsp;i think you might also want to check&nbsp;that you have&nbsp;a&nbsp;' before the text and a&nbsp;'; at the end of the line. I made the same mistake once and had the same result.</DIV>
<BLOCKQUOTE style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: blue 2px solid"><FONT face=Arial>make sure when you edited the file, that the text does not wrap.&nbsp; The text<BR>should be one long line...<BR><BR>ie:<BR>&nbsp; wrong:<BR>&nbsp; &nbsp; $lang['Reg_agreement'] = 'beginning of the text...<BR>&nbsp; &nbsp; end of text...';<BR><BR>&nbsp; correct:<BR>&nbsp; &nbsp; $lang['Reg_agreement'] = 'beginning ... end';<BR><BR>The language file is included into PHP scripts and does not understand<BR>word wrap very well (it does, but it's specific to certain situation not<BR>pertinent here).<BR><BR>if word wrap is the problem and you can't stop it, try this:<BR><BR>$lang['Reg_agreement'] = 'beginning of text ... text text text text ';<BR>$lang['Reg_agreement'] .= 'text text text text text text text text text ';<BR>$lang['Reg_agreement'] .= 'text text text text text text text text text ';<BR>$lang['Reg_agreement'] .= 'text text text text text text text text text ';<BR>$lang['Reg_agreement'] .= 'text text text text text ... end of text.';<BR><BR>note the .= as that will append that line to the existing string of text.<BR><BR>Hope that helps..<BR><BR>--<BR>&lt;? print(pack("c*", 74,117,115,116,32,/* Tony Evans&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; */<BR>65,110,111,116,104,101,114,32,80,72, /* Linux/Web Implementation&nbsp; &nbsp; */<BR>80,32,72,97,99,107,101,114,46,10));&nbsp; /* http://www.phoenixwing.com/ */ ?&gt;<BR><BR><BR><BR>On Tue, 14 Oct 2003, One Untraceable wrote:<BR><BR>&gt; When I edit the text I get this error<BR>&gt; Parse error: parse error in<BR>&gt; /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php<BR>&gt; on line 634<BR>&gt;<BR>&gt; Warning: Cannot modify header information - headers<BR>&gt; already sent by (output started at<BR>&gt; /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php:634)<BR>&gt; in<BR>&gt; /home/virtual/site2/fst/var/www/html/includes/page_header.php<BR>&gt; on line 474<BR>&gt;<BR>&gt; Warning: Cannot modify header information - headers<BR>&gt; already sent by (output started at<BR>&gt; /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php:634)<BR>&gt; in<BR>&gt; /home/virtual/site2/fst/var/www/html/includes/page_header.php<BR>&gt; on line 476<BR>&gt;<BR>&gt; Warning: Cannot modify header information - headers<BR>&gt; already sent by (output started at<BR>&gt; /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php:634)<BR>&gt; in<BR>&gt; /home/virtual/site2/fst/var/www/html/includes/page_header.php<BR>&gt; on line 477<BR>&gt;<BR>&gt; I am not doing anything odd, just replacing text with<BR>&gt; plain text. Any idea what might be causing this?<BR>&gt;<BR>&gt; Thanks again<BR>&gt;<BR>&gt;<BR>&gt; --- Jacobstoll@aol.com wrote:<BR>&gt; &gt; go to&nbsp; \language\lang_english\<BR>&gt; &gt;<BR>&gt; &gt; open lang_main.php<BR>&gt; &gt;<BR>&gt; &gt; search for the line that begins with -<BR>&gt; &gt; $lang['Reg_agreement']<BR>&gt; &gt; should look like<BR>&gt; &gt;<BR>&gt; &gt; $lang['Registration'] = 'Registration Agreement<BR>&gt; &gt; Terms';<BR>&gt; &gt; $lang['Reg_agreement'] = 'While the<BR>&gt; &gt; administrator..........<BR>&gt; &gt;<BR>&gt; &gt; edit it to what you want it to say<BR>&gt; &gt;<BR>&gt; &gt; -----------------------<BR>&gt; &gt; Can someone tell me what file I need to edit to<BR>&gt; &gt; change<BR>&gt; &gt; the text displayed when you click the register<BR>&gt; &gt; button<BR>&gt; &gt; on phpBB?(Registration Agreement Terms) I want to<BR>&gt; &gt; customize this text but dont know where to find it.<BR>&gt; &gt;<BR>&gt; &gt; Thanks for the help<BR>&gt; &gt;<BR>&gt; &gt; __________________________________<BR>&gt; &gt; Do you Yahoo!?<BR>&gt; &gt; The New Yahoo! Shopping - with improved product<BR>&gt; &gt; search<BR>&gt; &gt; http://shopping.yahoo.com<BR>&gt; &gt;<BR>&gt;<BR>&gt;<BR>&gt; __________________________________<BR>&gt; Do you Yahoo!?<BR>&gt; The New Yahoo! Shopping - with improved product search<BR>&gt; http://shopping.yahoo.com<BR>&gt;<BR>&gt;</FONT></BLOCKQUOTE></DIV>
<DIV></DIV></BODY></HTML>