View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0016724 | phpList 3 application | Interface - Administrator | public | 16-11-12 21:48 | 22-03-13 19:45 |
Reporter | alpha1 | ||||
Priority | normal | Severity | trivial | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | linux | OS | debian | OS Version | |
Product Version | 2.11.7 | ||||
Target Version | 2.11.8 | Fixed in Version | 2.11.8 | ||
Summary | 0016724: List names ($row[$id] have not been stripped of slashes | ||||
Description | Minor things, but the lists on ?page=list (among other places) have slashes in them if they have ' or other characters. | ||||
Steps To Reproduce | Go to admin/?page=list and have a list call like something like "Craig's List" and you'll see "Craig\'s List" | ||||
Additional Information | admin/list.php line 204 take this $element = '<!-- '.$row['id'].'-->'.$row['name']; and turn it info this $element = '<!-- '.$row['id'].'-->'.stripslashes($row['name']); to fix it at least on this page. Possibly the strip slashes should be done to the entire array though? | ||||
Tags | No tags attached. | ||||