View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0004110 | phpList 3 application | Browser Issues | public | 22-09-05 13:33 | 18-02-08 14:17 |
Reporter | joedan | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 2.10.1 | ||||
Target Version | 2.10.7 | Fixed in Version | 2.10.2 | ||
Summary | 0004110: bad html code leads to messy display | ||||
Description | In Manage Users -> Reconcile Users -> find invalid email addresses: The browser dumps a bunch of malformed html code to the screen. See Screen capture attached. Systems details below. Reproducible in Safari 2 and FireFox. | ||||
Additional Information | Your system details are: PHPlist version: 2.10.1 PHP version: 4.3.6 Browser: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/412.7 (KHTML, like Gecko) Safari/412.5 Webserver: Apache/2.0.49 (Unix) DAV/2 PHP/4.3.6 mod_fastcgi/2.4.2 mod_ssl/2.0.49 OpenSSL/0.9.6i Website: www.jsqspot.org/admin/lists/ Mysql Info: 4.0.18 PHP Modules: xslt xml wddx tokenizer standard sockets session pspell posix pgsql pcre overload mysql mhash mcrypt mbstring ldap imap iconv gd ftp fbsql exif curl ctype bcmath zlib openssl apache2handler Zend Optimizer | ||||
Tags | No tags attached. | ||||
related to | 0003721 | closed | phplist 2.10.x |
22-09-05 13:33
|
|
|
Open the file lists/admin/reconcileusers.php, edit line #259. The problem is a missing double-quote " CHANGE: print '<input type=submit name="deletetagged" value="'.$GLOBALS['I18N']->get('Delete Tagged Users').'></form>'; TO: print '<input type=submit name="deletetagged" value="'.$GLOBALS['I18N']->get('Delete Tagged Users').'"></form>'; The missing quote is the 11th character from the end of the line. |
|
thanks jvarrone :-) |