Update of /cvsroot/mantisbt/mantisbt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13894
Modified Files:
Tag: BRANCH_1_0_0
query_store_page.php
Log Message:
fix for 0006668: Parse error while saving new filter: Call to undefined
function: string_strip_tags()
Index: query_store_page.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/query_store_page.php,v
retrieving revision 1.6.14.1
retrieving revision 1.6.14.1.4.1
diff -u -d -r1.6.14.1 -r1.6.14.1.4.1
--- query_store_page.php 8 Jan 2006 14:26:47 -0000 1.6.14.1
+++ query_store_page.php 4 Feb 2006 13:33:45 -0000 1.6.14.1.4.1
@@ -38,7 +38,7 @@
}
# Check for an error
- $t_error_msg = string_strip_tags( gpc_get_string( 'error_msg', null ) );
+ $t_error_msg = strip_tags( gpc_get_string( 'error_msg', null ) );
if ( $t_error_msg != null ) {
print "<br />$t_error_msg<br /><br />";
}
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
|