Index: public_html/wp-content/mu-plugins/downloads/rosetta-downloads.php
===================================================================
--- public_html/wp-content/mu-plugins/downloads/rosetta-downloads.php	(revision 12722)
+++ public_html/wp-content/mu-plugins/downloads/rosetta-downloads.php	(working copy)
@@ -40,6 +40,7 @@
 	 * Returns download counts for release packages of the current stable branch.
 	 *
 	 * @return array Download counts per locale.
+	 * @global wpdb $wpdb WordPress database abstraction object.
 	 */
 	function get_release_download_counts() {
 		global $wpdb;
@@ -75,6 +76,7 @@
 	 * Returns download counts for language packs of the current stable branch.
 	 *
 	 * @return array Download counts per locale.
+	 * @global wpdb $wpdb WordPress database abstraction object.
 	 */
 	function get_translation_download_counts() {
 		global $wpdb;
Index: public_html/wp-content/mu-plugins/roles/cross-locale-pte.php
===================================================================
--- public_html/wp-content/mu-plugins/roles/cross-locale-pte.php	(revision 12722)
+++ public_html/wp-content/mu-plugins/roles/cross-locale-pte.php	(working copy)
@@ -126,6 +126,7 @@
 
 	/**
 	 * Update the projects for the Cross-Locale PTE.
+	 * @global wpdb $wpdb WordPress database abstraction object.
 	 */
 	public static function update_cross_locale_pte() {
 		global $wpdb;
@@ -195,6 +196,7 @@
 	 *
 	 * @param int $user_id User ID.
 	 * @return array List of project IDs.
+	 * @global wpdb $wpdb WordPress database abstraction object.
 	 */
 	public static function get_users_projects( $user_id ) {
 		global $wpdb;
@@ -211,6 +213,7 @@
 	 * Retrieves the projects for which a user has cross-locale PTE permissions.
 	 *
 	 * @return array List of User IDs.
+	 * @global wpdb $wpdb WordPress database abstraction object.
 	 */
 	public static function get_all_users() {
 		global $wpdb;
@@ -248,6 +251,7 @@
 	 * @param WP_User $user   The user.
 	 * @param int $project_id The Project ID.
 	 * @return string|bool The verdict.
+	 * @global wpdb $wpdb WordPress database abstraction object.
 	 */
 	public static function user_has_cross_locale_permission( $user, $project_id ) {
 		static $cache = null;
Index: public_html/wp-content/themes/rosetta/functions.php
===================================================================
--- public_html/wp-content/themes/rosetta/functions.php	(revision 12722)
+++ public_html/wp-content/themes/rosetta/functions.php	(working copy)
@@ -84,6 +84,8 @@
  * Checks if locale provides a custom stylesheet.
  *
  * @return boolean True if file exists, false if not.
+ * 
+ * @global $rosetta.
  */
 function is_locale_css() {
 	global $rosetta;
@@ -94,6 +96,8 @@
  * Returns URL to locale's custom stylesheet.
  *
  * @return string URL to custom stylesheet.
+ * 
+ * @global $rosetta.
  */
 function get_locale_css_url() {
 	global $rosetta;
Index: public_html/wp-content/themes/rosetta/sidebar-page.php
===================================================================
--- public_html/wp-content/themes/rosetta/sidebar-page.php	(revision 12722)
+++ public_html/wp-content/themes/rosetta/sidebar-page.php	(working copy)
@@ -1,4 +1,9 @@
 <?php
+
+/**
+ * @global $rosetta.
+ */
+
 global $rosetta;
 $latest_release = $rosetta->rosetta->get_latest_release();
 if ( false !== $latest_release ) :
