Non-admins can use the component-install class

This commit is contained in:
stronk7 2006-03-09 23:55:46 +00:00
parent f099f4dc12
commit 2489a6f6fe

View file

@ -202,17 +202,11 @@ class component_installer {
$this->requisitesok = false;
/// Check for admin (this will be out in the future)
if (!isadmin()) {
$this->errorstring='onlyadmins';
return false;
} else {
/// Check for fopen remote enabled
if (!ini_get('allow_url_fopen')) {
$this->errorstring='remotedownloadnotallowed';
return false;
}
}
/// Check that everything we need is present
if (empty($this->sourcebase) || empty($this->zippath) || empty($this->zipfilename)) {
$this->errorstring='missingrequiredfield';