Yii for beginners

Comparing #97 with #98

Revision #98 was created by WaldemarPross WaldemarPross on Aug 1, 2013, 8:35:47 AM.

Added a missing apostrophe in the code snippets for labels

Content

[...]
```php
public function attributeLabels()
{
return array(
'id_user
' => 'Users ID',
'user_name' => 'Name of user',
);
[...]
{
return array(
'id_user
' => 'Users ID',
'user_name' => 'Name of user',
);
[...]
{
return array(
'id_user
' => 'Users ID',
'user_name' => 'Name of user',
);
}

}
[...]