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

« back to all changes in this revision

Viewing changes to html/user/pending.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:
22
22
require_once("../inc/boinc_db.inc");
23
23
require_once("../inc/xml.inc");
24
24
 
 
25
BoincDb::get(true);
 
26
 
25
27
$config = get_config();
26
28
if (!parse_bool($config, "show_results")) {
27
29
    error_page("This feature is turned off temporarily");
32
34
if ($format == "xml") {
33
35
    xml_header();
34
36
    
35
 
    $auth = process_user_text(get_str('authenticator'));
 
37
    $auth = BoincDb::escape_string(get_str('authenticator'));
36
38
    $user = BoincUser::lookup("authenticator='$auth'");
37
39
    if (!$user) {
38
40
        echo "<error>".xml_error(-136)."</error>\n";
76
78
    page_tail();
77
79
}
78
80
 
79
 
$cvs_version_tracker[]="\$Id: pending.php 15758 2008-08-05 22:43:14Z davea $";  //Generated automatically - do not edit
 
81
$cvs_version_tracker[]="\$Id: pending.php 18146 2009-05-18 16:58:11Z boincadm $";  //Generated automatically - do not edit
80
82
?>