When there is still no dictionary available, the menus / classes / attributes have a default label based on their raw names (replacing _ by a blank)

SVN:trunk[1948]
This commit is contained in:
Romain Quetiez
2012-04-06 13:25:32 +00:00
parent 3a841269ec
commit da2abef030
3 changed files with 5 additions and 5 deletions

View File

@@ -296,7 +296,7 @@ abstract class MetaModel
{
self::_check_subclass($sClass);
$sStringCode = 'Class:'.$sClass;
return Dict::S($sStringCode, $sClass);
return Dict::S($sStringCode, str_replace('_', ' ', $sClass));
}
final static public function GetName_Obsolete($sClass)
{