aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1212.php
blob: f15ba8a719b8412c559103942f098d585ac9c4a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

namespace Zotlabs\Update;

class _1212 {

	function run() {

		$r = q("select channel_id from channel where true");
		if($r) {
			foreach($r as $rv) {
				$role = get_pconfig($rv['channel_id'],'system','permissions_role');
				if($role !== 'custom') {
					$role_permissions = \Zotlabs\Access\PermissionRoles::role_perms($role);
					if(array_key_exists('limits',$role_permissions) && array_key_exists('post_comments',$role_permissions['limits'])) {
						set_pconfig($rv['channel_id'],'perm_limits','post_comments',$role_permissions['limits']['post_comments']);
					}
				}
			}
		}

		return UPDATE_SUCCESS;

	}

}