Remove php close at end of file
This commit is contained in:
parent
0e58800016
commit
0365f8fd01
|
@ -25,4 +25,3 @@ OC_Mount_Config::createCertificateBundle();
|
|||
|
||||
header("Location: settings/personal.php");
|
||||
exit;
|
||||
?>
|
|
@ -37,5 +37,3 @@ if (isset($_POST['app_key']) && isset($_POST['app_secret'])) {
|
|||
} else {
|
||||
OCP\JSON::error(array('data' => array('message' => 'Please provide a valid Dropbox app key and secret.')));
|
||||
}
|
||||
|
||||
?>
|
|
@ -47,5 +47,3 @@ if (isset($_POST['step'])) {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
|
@ -9,4 +9,3 @@ $cert = $_POST['cert'];
|
|||
$file = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'.$cert;
|
||||
unlink($file);
|
||||
OC_Mount_Config::createCertificateBundle();
|
||||
?>
|
|
@ -232,5 +232,3 @@ class OC_Filestorage_AmazonS3 extends OC_Filestorage_Common {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
|
@ -251,5 +251,3 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
|
@ -31,5 +31,3 @@ $tmpl->assign('mounts', OC_Mount_Config::getPersonalMountPoints());
|
|||
$tmpl->assign('certs', OC_Mount_Config::getCertificates());
|
||||
$tmpl->assign('backends', $backends);
|
||||
return $tmpl->fetchPage();
|
||||
|
||||
?>
|
|
@ -30,5 +30,3 @@ $tmpl->assign('groups', OC_Group::getGroups());
|
|||
$tmpl->assign('users', OCP\User::getUsers());
|
||||
$tmpl->assign('allowUserMounting', OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes'));
|
||||
return $tmpl->fetchPage();
|
||||
|
||||
?>
|
|
@ -4,4 +4,3 @@ echo "<pre>";
|
|||
print_r(OC_Mount_Config::getSystemMountPoints());
|
||||
echo "</pre>";
|
||||
// OC_Mount_Config::addMountPoint('Photos', 'OC_Filestorage_SWIFT', array('host' => 'gapinthecloud.com', 'user' => 'Gap', 'token' => '23423afdasFJEW22', 'secure' => 'true', 'root' => ''), OC_Mount_Config::MOUNT_TYPE_GROUP, 'admin', false);
|
||||
?>
|
||||
|
|
|
@ -32,5 +32,3 @@ return array(
|
|||
)
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
|
@ -5,4 +5,3 @@ $tmpl = new OCP\Template( 'files_versions', 'settings-personal');
|
|||
OCP\Util::addscript('files_versions','settings-personal');
|
||||
|
||||
return $tmpl->fetchPage();
|
||||
?>
|
|
@ -35,4 +35,3 @@ $entry = array(
|
|||
'href' => OC_Helper::linkTo( "user_webdavauth", "settings.php" ),
|
||||
'name' => 'WEBDAVAUTH'
|
||||
);
|
||||
?>
|
||||
|
|
|
@ -34,7 +34,3 @@ $tmpl = new OC_Template( 'user_webdavauth', 'settings');
|
|||
$tmpl->assign( 'webdav_url', OC_Config::getValue( "user_webdavauth_url" ));
|
||||
|
||||
return $tmpl->fetchPage();
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
|
|
@ -81,5 +81,3 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
|
|||
return $returnArray;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
@ -383,5 +383,3 @@ class MDB2_Driver_Datatype_sqlite3 extends MDB2_Driver_Datatype_Common
|
|||
|
||||
// }}}
|
||||
}
|
||||
|
||||
?>
|
|
@ -31,4 +31,3 @@ require_once 'MDB2/Driver/Native/Common.php';
|
|||
class MDB2_Driver_Native_sqlite extends MDB2_Driver_Native_Common
|
||||
{
|
||||
}
|
||||
?>
|
|
@ -584,5 +584,3 @@ class MDB2_Driver_Reverse_sqlite3 extends MDB2_Driver_Reverse_Common
|
|||
'This DBMS can not obtain tableInfo from result sets', __FUNCTION__);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
|
@ -1119,5 +1119,3 @@ interface Share_Backend_Collection extends Share_Backend {
|
|||
public function getChildren($itemSource);
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue