Parse error: syntax error, unexpected T_DEFAULT
Code:
	// Script flow
	
	switch($mod) {
		
		case 'doadd':
		   die('executed doadd code');
		   break;
		case default:
			addgroup();
			break;
			
	}
error occurs around the "case defualt" line. Can't see anything wrong.