Posted by José San Martin on July 17, 2008 at 3:10am
Jump to:
| Project: | Comment Page |
| Version: | 5.x-1.0 |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (won't fix) |
Issue Summary
This module makes uses of the function ctype_alnum, which is not available everywhere. Drupal dropped its use since 4.7, and it's no longer a requirement. Should not be here, too.
We just have to replace a single occurence of
if (ctype_alnum, $str)
with:
if (eregi('[a-zA-Z0-9_]', $str)
as suggested in http://php.net/ctype_alnum
José San Martin
Chuva Inc.
Comments
#1