<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) wrapped the text on that, sorry about that. If you still have troubles, i think you might also want to check that you have a ' before the text and a '; 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. The text<BR>should be one long line...<BR><BR>ie:<BR> wrong:<BR> $lang['Reg_agreement'] = 'beginning of the text...<BR> end of text...';<BR><BR> correct:<BR> $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><? print(pack("c*", 74,117,115,116,32,/* Tony Evans */<BR>65,110,111,116,104,101,114,32,80,72, /* Linux/Web Implementation */<BR>80,32,72,97,99,107,101,114,46,10)); /* http://www.phoenixwing.com/ */ ?><BR><BR><BR><BR>On Tue, 14 Oct 2003, One Untraceable wrote:<BR><BR>> When I edit the text I get this error<BR>> Parse error: parse error in<BR>> /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php<BR>> on line 634<BR>><BR>> Warning: Cannot modify header information - headers<BR>> already sent by (output started at<BR>> /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php:634)<BR>> in<BR>> /home/virtual/site2/fst/var/www/html/includes/page_header.php<BR>> on line 474<BR>><BR>> Warning: Cannot modify header information - headers<BR>> already sent by (output started at<BR>> /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php:634)<BR>> in<BR>> /home/virtual/site2/fst/var/www/html/includes/page_header.php<BR>> on line 476<BR>><BR>> Warning: Cannot modify header information - headers<BR>> already sent by (output started at<BR>> /home/virtual/site2/fst/var/www/html/language/lang_english/lang_main.php:634)<BR>> in<BR>> /home/virtual/site2/fst/var/www/html/includes/page_header.php<BR>> on line 477<BR>><BR>> I am not doing anything odd, just replacing text with<BR>> plain text. Any idea what might be causing this?<BR>><BR>> Thanks again<BR>><BR>><BR>> --- Jacobstoll@aol.com wrote:<BR>> > go to \language\lang_english\<BR>> ><BR>> > open lang_main.php<BR>> ><BR>> > search for the line that begins with -<BR>> > $lang['Reg_agreement']<BR>> > should look like<BR>> ><BR>> > $lang['Registration'] = 'Registration Agreement<BR>> > Terms';<BR>> > $lang['Reg_agreement'] = 'While the<BR>> > administrator..........<BR>> ><BR>> > edit it to what you want it to say<BR>> ><BR>> > -----------------------<BR>> > Can someone tell me what file I need to edit to<BR>> > change<BR>> > the text displayed when you click the register<BR>> > button<BR>> > on phpBB?(Registration Agreement Terms) I want to<BR>> > customize this text but dont know where to find it.<BR>> ><BR>> > Thanks for the help<BR>> ><BR>> > __________________________________<BR>> > Do you Yahoo!?<BR>> > The New Yahoo! Shopping - with improved product<BR>> > search<BR>> > http://shopping.yahoo.com<BR>> ><BR>><BR>><BR>> __________________________________<BR>> Do you Yahoo!?<BR>> The New Yahoo! Shopping - with improved product search<BR>> http://shopping.yahoo.com<BR>><BR>></FONT></BLOCKQUOTE></DIV>
<DIV></DIV></BODY></HTML>