Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1156 → Rev 1157

/website/repo/index.php
108,9 → 108,14
echo "ERROR: no package specified\r\n";
exit(0);
}
$pv = explode('-', strtolower($_GET['p']));
$p = $pv[0];
if (!empty($pv[1])) $v = $pv[1];
// pull and pullsrc actions accept pkg-ver strings
if ($a == 'pull' || $a == 'pullsrc') {
$pv = explode('-', strtolower($_GET['p']));
$p = $pv[0];
if (!empty($pv[1])) $v = $pv[1];
} else {
$p = strtolower($_GET['p']);
}
}