4 Commits

Author SHA1 Message Date
Thomas Keller
1c037f81a0 Release 1.3.2. 2012-05-09 22:09:13 +02:00
Thomas Keller
71c41fe940 Of course $ids should have been initialized beforehand... 2012-05-07 23:26:23 +02:00
Thomas Keller
8ad0707509 Fix the project display when no projects are available or visible. 2012-05-07 23:12:55 +02:00
Thomas Keller
a2d5b14a2c Start with 1.3.2 development. 2012-05-06 22:49:04 +02:00
3 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
# InDefero 1.3.2 - Wed May 09 20:05 2012 UTC
## Bugfixes
- Fix two bugs in the project list view if no project
is visible to the user or available in the forge (issue 805)
# InDefero 1.3.1 - Sun May 06 20:32 2012 UTC
## Bugfixes

View File

@@ -381,6 +381,7 @@ class IDF_Views
$db =& Pluf::db();
// the administrator can see all projects
if ($user->administrator) {
$ids = array();
$sql_results = $db->select(
'SELECT id FROM '.Pluf::f('db_table_prefix', '').'idf_projects'
);
@@ -505,7 +506,7 @@ class IDF_Views
*/
public static function getProjectsStatistics($projects)
{
$projectIds = array();
$projectIds = array(0);
foreach ($projects as $project) {
$projectIds[] = $project->id;
}

View File

@@ -1,5 +1,5 @@
<?php
return array(
'version' => '1.3.1',
'version' => '1.3.2',
'revision' => '$Format:%H$',
);