GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 4-4 lines in 2 locations

protected/extensions/bootstrap/widgets/TbBaseMenu.php 1 location

@@ 148-151 (lines=4) @@
145
			$item['label'] .= ' <span class="caret"></span>';
146
		}
147
148
		if (isset($item['url']))
149
			return CHtml::link($item['label'], $item['url'], $item['linkOptions']);
150
		else
151
			return $item['label'];
152
	}
153
154
	/**

protected/extensions/bootstrap/widgets/TbDropdown.php 1 location

@@ 58-61 (lines=4) @@
55
56
		$item['linkOptions']['tabindex'] = -1;
57
58
		if (isset($item['url']))
59
			return CHtml::link($item['label'], $item['url'], $item['linkOptions']);
60
		else
61
			return $item['label'];
62
	}
63
64
	/**