7
[XOOPS 2.2]
That string is defined in modules/profile/language/english/main.php:
define('_PROFILE_MA_DISPLAYNAMETAKEN','ERROR: Displayname taken.');
_PROFILE_MA_DISPLAYNAMETAKEN occurs in one place, in modules/profile/include/functions.php:
...
if ($display_count > 0) {
$stop .= _PROFILE_MA_DISPLAYNAMETAKEN."
";
}
...
If I were experiencing this problem, I would insert some debug code in functions.php to figure out what's going on.