Indefero

Indefero Commit Details


Date:2010-03-26 14:40:50 (14 years 8 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:7b0ece42f0dbfe4776e170809283a25a704cc886
Parents: 3c29e4e6ae12a4b3f5a5dee26cea826d6c1cf227
Message:Fixed to convert in utf-8 earlier in the process.

Changes:

File differences

src/IDF/Scm/Git.php
501501
502502
503503
504
505
504506
505507
506508
......
534536
535537
536538
539
540
537541
538542
539543
if (preg_match('/^commit (\w{40})$/', $line)) {
if (count($c) > 0) {
$c['full_message'] = trim($c['full_message']);
$c['full_message'] = IDF_Commit::toUTF8($c['full_message']);
$c['title'] = IDF_Commit::toUTF8($c['title']);
$res[] = (object) $c;
}
$c = array();
}
}
$c['full_message'] = !empty($c['full_message']) ? trim($c['full_message']) : '';
$c['full_message'] = IDF_Commit::toUTF8($c['full_message']);
$c['title'] = IDF_Commit::toUTF8($c['title']);
$res[] = (object) $c;
return $res;
}

Archive Download the corresponding diff file

Page rendered in 0.07702s using 13 queries.