Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWayne Beaton2014-05-27 15:09:04 +0000
committerWayne Beaton2014-05-27 15:09:04 +0000
commit0f596f9b6dd76b5c5207b4a6259fbfeabe900513 (patch)
treed8ed6f9027bde033ebf87d10402abd86e0069886
parente524116bf15377ed84f820deff7e09c337d59e67 (diff)
downloadorg.eclipse.dash.dashboard-0f596f9b6dd76b5c5207b4a6259fbfeabe900513.tar.gz
org.eclipse.dash.dashboard-0f596f9b6dd76b5c5207b4a6259fbfeabe900513.tar.xz
org.eclipse.dash.dashboard-0f596f9b6dd76b5c5207b4a6259fbfeabe900513.zip
Bug fix: use the right variable name, dummy.
-rwxr-xr-xdownloads/scan.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/downloads/scan.php b/downloads/scan.php
index 776921f..720a9aa 100755
--- a/downloads/scan.php
+++ b/downloads/scan.php
@@ -187,7 +187,7 @@ class ProjectInfo {
function addProject($id, $bundle) {
if ($id == $this->id) return;
- if ($d == 'tools.orbit') return; // Orbit doesn't count
+ if ($id == 'tools.orbit') return; // Orbit doesn't count
$this->included[$id][$bundle] = true;
}

Back to the top