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

namespace Zotlabs\Update;

class _1243 {

	function run() {
		
		$x = get_config('system','filesystem_storage_thumbnails');
		del_config('system','filesystem_storage_thumbnails');
		if ($x !== false)
			set_config('system','photo_storage_type', intval($x));
			
		return UPDATE_SUCCESS;
	}

}