From e30ab9ac4f20db5003d25ffdf70492e58a7769c0 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 29 Nov 2023 15:51:25 +0100 Subject: [PATCH] wait #6527 @0.25 --- app/Console/Commands/FluidbookCollection.php | 2 +- app/Console/Commands/FluidbookPackage.php | 2 +- app/Console/Commands/WorkshopMigration.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/FluidbookCollection.php b/app/Console/Commands/FluidbookCollection.php index ce8aa4d0a..c4713f1ae 100644 --- a/app/Console/Commands/FluidbookCollection.php +++ b/app/Console/Commands/FluidbookCollection.php @@ -20,7 +20,7 @@ class FluidbookCollection extends CubistCommand { PHP::neverStop(true); $collection = \App\Models\FluidbookCollection::find($this->argument('id')); - $job = new FluidbookCollectionDownload($collection, $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5)); + $job = new FluidbookCollectionDownload($collection, $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5963)); $job->handle(); } } diff --git a/app/Console/Commands/FluidbookPackage.php b/app/Console/Commands/FluidbookPackage.php index b8281c1b5..fed32adaa 100644 --- a/app/Console/Commands/FluidbookPackage.php +++ b/app/Console/Commands/FluidbookPackage.php @@ -17,7 +17,7 @@ class FluidbookPackage extends CubistCommand */ public function handle() { - $download = new Download(FluidbookPublication::find($this->argument('id')), $this->argument('type'), $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5)); + $download = new Download(FluidbookPublication::find($this->argument('id')), $this->argument('type'), $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5963)); $download->handle(); } } diff --git a/app/Console/Commands/WorkshopMigration.php b/app/Console/Commands/WorkshopMigration.php index 3bf137cad..118018c25 100644 --- a/app/Console/Commands/WorkshopMigration.php +++ b/app/Console/Commands/WorkshopMigration.php @@ -27,7 +27,7 @@ class WorkshopMigration extends CubistCommand protected $_wsRanks = []; const OLD_DB = 'extranet_clean'; protected $_oldRoot = '/home/extranet/www/fluidbook/'; - protected static $_admin = 5; + protected static $_admin = 5963; /** @var Lock */ protected Lock $_lock; -- 2.39.5