From d395b90d04345b91891bebded4708b3049e3321d Mon Sep 17 00:00:00 2001 From: Bryan Tong Minh Date: Sat, 3 May 2008 13:49:53 +0000 Subject: [PATCH] Mark ForeignDBFile as unmovable --- includes/filerepo/ForeignDBFile.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/includes/filerepo/ForeignDBFile.php b/includes/filerepo/ForeignDBFile.php index 267ce2ca16..fee0e0374a 100644 --- a/includes/filerepo/ForeignDBFile.php +++ b/includes/filerepo/ForeignDBFile.php @@ -28,7 +28,10 @@ class ForeignDBFile extends LocalFile { function delete( /*...*/ ) { $this->readOnlyError(); } - + function move( /*...*/ ) { + $this->readOnlyError(); + } + function getDescriptionUrl() { // Restore remote behaviour return File::getDescriptionUrl(); -- 2.20.1