diff --git a/views/bootstrap/class.Charts.php b/views/bootstrap/class.Charts.php
index e7f5ee535..e701bd03c 100644
--- a/views/bootstrap/class.Charts.php
+++ b/views/bootstrap/class.Charts.php
@@ -208,7 +208,7 @@ $(document).ready( function() {
$this->columnStart(3);
$this->contentHeading(getMLText("chart_selection"));
$this->contentContainerStart();
- foreach(array('docsperuser', 'sizeperuser', 'docspermimetype', 'docspercategory', 'docsperstatus', 'docspermonth', 'docsaccumulated') as $atype) {
+ foreach(array('docsperuser', 'foldersperuser', 'sizeperuser', 'docspermimetype', 'docspercategory', 'docsperstatus', 'docspermonth', 'docsaccumulated') as $atype) {
echo "\n";
}
$this->contentContainerEnd();
@@ -235,6 +235,7 @@ $(document).ready( function() {
switch($type) {
case 'docspermonth':
case 'docsperuser':
+ case 'foldersperuser':
case 'docspermimetype':
case 'docspercategory':
case 'docsperstatus':
diff --git a/views/bootstrap/class.UsrMgr.php b/views/bootstrap/class.UsrMgr.php
index b2dccdd1d..c56c1af47 100644
--- a/views/bootstrap/class.UsrMgr.php
+++ b/views/bootstrap/class.UsrMgr.php
@@ -116,8 +116,16 @@ $(document).ready( function() {
echo "\n";
$documents = $seluser->getDocuments();
echo "".getMLText('documents')." | ".count($documents)." |
\n";
+ $contents = $seluser->getDocumentContents();
+ echo "".getMLText('document_versions')." | ".count($contents)." |
\n";
$documents = $seluser->getDocumentsLocked();
echo "".getMLText('documents_locked')." | ".count($documents)." |
\n";
+ $links = $seluser->getDocumentLinks();
+ echo "".getMLText('document_links')." | ".count($links)." |
\n";
+ $files = $seluser->getDocumentFiles();
+ echo "".getMLText('document_files')." | ".count($files)." |
\n";
+ $folders = $seluser->getFolders();
+ echo "".getMLText('folders')." | ".count($folders)." |
\n";
$categories = $seluser->getKeywordCategories();
echo "".getMLText('personal_default_keywords')." | ".count($categories)." |
\n";
$dnot = $seluser->getNotifications(T_DOCUMENT);