Make CONCAT calls database portable, change IF() to standard CASE-WHEN calls.
[lhc/web/wiklou.git] / includes / filerepo / ForeignDBRepo.php
index 96baff4..13dcd02 100644 (file)
@@ -46,6 +46,12 @@ class ForeignDBRepo extends LocalRepo {
        function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
                throw new MWException( get_class($this) . ': write operations are not supported' );
        }
+       function publish( $srcPath, $dstRel, $archiveRel, $flags = 0 ) {
+               throw new MWException( get_class($this) . ': write operations are not supported' );
+       }
+       function deleteBatch( $fileMap ) {
+               throw new MWException( get_class($this) . ': write operations are not supported' );
+       }
 }