mirror of https://github.com/BOINC/boinc.git
Eliminate undefined index
svn path=/trunk/boinc/; revision=6114
This commit is contained in:
parent
39dbc2fd3c
commit
35847ea4bf
|
@ -6,8 +6,11 @@ require_once("../inc/team.inc");
|
||||||
|
|
||||||
$n = 20;
|
$n = 20;
|
||||||
|
|
||||||
$sort_by = $_GET["sort_by"];
|
if (isset($_GET["sort_by"])) {
|
||||||
if (!$sort_by) $sort_by = "expavg_credit";
|
$sort_by = $_GET["sort_by"];
|
||||||
|
} else {
|
||||||
|
$sort_by = "expavg_credit";
|
||||||
|
}
|
||||||
$offset = get_int("offset", true);
|
$offset = get_int("offset", true);
|
||||||
if (!$offset) $offset=0;
|
if (!$offset) $offset=0;
|
||||||
$type = get_int("type", true);
|
$type = get_int("type", true);
|
||||||
|
|
Loading…
Reference in New Issue