Indefero

Indefero Commit Details


Date:2009-05-07 08:28:52 (15 years 7 months ago)
Author:Loic d'Anterroches
Branch:develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:1c51437569f2efbe0cb1cae5bbd65518b6c9f371
Parents: 63cdede8545f45f19f7ec151b75c10243eb9e856
Message:Fixed bad sequence of the tests.

Changes:

File differences

src/IDF/Form/Admin/UserUpdate.php
179179
180180
181181
182
183
184
182185
183186
184187
185188
186
187
188
189189
190190
191191
function clean_first_name()
{
$first_name = trim($this->cleaned_data['first_name']);
if ($first_name == '---') {
throw new Pluf_Form_Invalid(__('--- is not a valid first name.'));
}
if ($first_name == mb_strtoupper($first_name)) {
$first_name = mb_convert_case(mb_strtolower($first_name),
MB_CASE_TITLE, 'UTF-8');
}
if ($first_name == '---') {
throw new Pluf_Form_Invalid(__('--- is not a valid first name.'));
}
return $first_name;
}

Archive Download the corresponding diff file

Page rendered in 0.08394s using 13 queries.