View Issue Details

IDProjectCategoryView StatusLast Update
0006868mantisbtprintingpublic2006-05-07 03:51
Reporterjiangxin Assigned Tothraxisp  
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionfixed 
Product Versiongit trunk 
Fixed in Version1.1.0a1 
Summary0006868: wrong strpos function call
Description

in core/string_api.php, line 193:
if ( strpos( '?', $t_url ) !== FALSE ) {
shoule be
if ( strpos( $t_url, '?' ) !== FALSE ) {

TagsNo tags attached.

Relationships

related to 0006869 closedthraxisp bug in string_sanitize_url() 
parent of 0007033 closedvboctor Port: wrong strpos function call 

Activities

jiangxin

jiangxin

2006-03-18 11:34

reporter   ~0012363

Last edited: 2006-03-18 11:36

if apply this patch, another hidden bug will appear.
please see 0006869.

thraxisp

thraxisp

2006-03-19 21:59

reporter   ~0012368

Fixed in CVS.

core/string_api.php -> 1.81