|
From: Benjamin C. <bc...@us...> - 2004-09-06 04:50:32
|
Update of /cvsroot/phpbt/phpbt/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10894/inc Modified Files: Tag: htmltemplates functions.php Log Message: Formatting Index: functions.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v retrieving revision 1.44.2.11 retrieving revision 1.44.2.12 diff -u -r1.44.2.11 -r1.44.2.12 --- functions.php 4 Sep 2004 20:37:45 -0000 1.44.2.11 +++ functions.php 6 Sep 2004 04:50:22 -0000 1.44.2.12 @@ -513,7 +513,7 @@ // Handle a database error function handle_db_error(&$obj) { if (!defined('RAWERROR')) { - define('RAWERROR', false); + define('RAWERROR', false); } if (!RAWERROR) { show_text('A database error has occurred'); @@ -529,10 +529,10 @@ } /* quoted-printable encoder function - This encoding has all non-ascii (say >127, <32 and =61 chracters) - encoded as "=" and it's hexadecimal value. Special case is space - (32 decimal) at the end of line, which is converted to =20, other- - wise it's not converted and it's returned as space (32 decimal). */ + This encoding has all non-ascii (say >127, <32 and =61 chracters) + encoded as "=" and it's hexadecimal value. Special case is space + (32 decimal) at the end of line, which is converted to =20, other- + wise it's not converted and it's returned as space (32 decimal). */ function qp_enc($input, $line_max = 76) { // Initialize variables |