Closed (won't fix)
Project:
Comment Page
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
17 Jul 2008 at 03:10 UTC
Updated:
23 Jul 2009 at 14:53 UTC
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
Comment #1
rszrama commented