~ubuntu-branches/ubuntu/precise/boinc/precise

« back to all changes in this revision

Viewing changes to html/user/result.php

Tags: 6.12.8+dfsg-1
* New upstream release.
* Simplified debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
$resultid = get_int("resultid");
26
26
$result = lookup_result($resultid);
27
27
if (!$result) {
28
 
    error_page("No such task");
 
28
    error_page(tra("No such task"));
29
29
}
30
 
page_head("Task details");
 
30
page_head(tra("Task %1", $resultid));
31
31
show_result($result);
32
32
page_tail();
33
33