diff options
-rw-r--r-- | Report/Box/00_Project.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Report/Box/00_Project.php b/Report/Box/00_Project.php index 7e310c2..78d3cd6 100644 --- a/Report/Box/00_Project.php +++ b/Report/Box/00_Project.php @@ -24,8 +24,8 @@ class Report_Box_Project extends Report_Box function _get_var_definitions() { return array( 'age' => ':render', - 'next' => ':render' -// 'contribs' => '%d registered contributors', + 'next' => ':render', + 'contribs' => '%d registered contributors', // 'packagers' => '%d packagers', ); } @@ -50,7 +50,11 @@ class Report_Box_Project extends Report_Box 'c' => 'ok', 's' => 0 ); - + } + + function _get_links() + { + return 'View people stats, ...'; } } |