aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1243.php
blob: 05845ad4736724776f4afc4c326214fee906217b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace Zotlabs\Update;

use Zotlabs\Lib\Config;

class _1243 {

	function run() {

		$x = Config::Get('system','filesystem_storage_thumbnails');
		Config::Delete('system','filesystem_storage_thumbnails');
		if ($x !== false)
			Config::Set('system','photo_storage_type', intval($x));

		return UPDATE_SUCCESS;
	}

}