diff --git a/codepot/src/codepot/views/user_home.php b/codepot/src/codepot/views/user_home.php index 913b2c59..3fcb449f 100644 --- a/codepot/src/codepot/views/user_home.php +++ b/codepot/src/codepot/views/user_home.php @@ -14,7 +14,7 @@ @@ -62,52 +62,51 @@ $num_activities = 0;
-

- - lang->line('Projects')?> () - -

-
- -
-

- - lang->line('Open issues')?> () - -

-
- +
+
    + projectid; + $xid = $this->converter->AsciiToHex ((string)$issue->id); + + $anc = anchor ("issue/show/{$issue->projectid}/{$xid}", '#' . htmlspecialchars($issue->id)); + + $status = htmlspecialchars( + array_key_exists($issue->status, $issue_status_array)? + $issue_status_array[$issue->status]: $issue->status); + $type = htmlspecialchars( + array_key_exists($issue->type, $issue_type_array)? + $issue_type_array[$issue->type]: $issue->type); + + $sum = htmlspecialchars ($issue->summary); + print "
  • {$pro} {$anc} {$type} {$status} - {$sum}
  • "; + } + ?> +
+
+ +
+
    + name} ({$project->id})"; + $anc = anchor ("project/home/{$project->id}", htmlspecialchars($cap)); + $sum = htmlspecialchars ($project->summary); + print "
  • {$anc} - {$sum}
  • "; + } + ?> +
+