* Fix bug #13928.
This commit is contained in:
@@ -1 +1,2 @@
|
||||
#whiteListBox .input-group:last-child {margin-top: 10px;}
|
||||
#mainContent .main-header h2 {width: 90%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
.main-col .doc-title .version .dropdown-menu a:hover {color: #ffffff;}
|
||||
.main-col .doc-title .actions a {margin-right: 8px;}
|
||||
.main-col .doc-title .actions i {font-size: 15px; color: #8c8c8c;}
|
||||
#content .title {width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
|
||||
#mainContent .scrollbar-hover {max-height: 2000px; overflow: scroll;}
|
||||
#sidebar {width: 275px;}
|
||||
#sidebar>.cell {width: 100%;}
|
||||
|
||||
@@ -1668,6 +1668,7 @@ class docModel extends model
|
||||
$query = $this->dao->select('t1.id,t1.title,t2.type,t2.product,t2.project,t2.execution')->from(TABLE_DOC)->alias('t1')
|
||||
->leftJoin(TABLE_DOCLIB)->alias('t2')->on('t1.lib=t2.id')
|
||||
->where('t1.deleted')->eq(0)
|
||||
->andWhere('t1.assetLib')->eq(0)
|
||||
->andWhere('t1.lib')->eq($libID)
|
||||
->beginIF($this->config->doc->notArticleType)->andWhere('t1.type')->notIN($this->config->doc->notArticleType)->fi()
|
||||
->get();
|
||||
@@ -2092,7 +2093,11 @@ class docModel extends model
|
||||
if($startModule) $startModulePath = $startModule->path . '%';
|
||||
}
|
||||
|
||||
$docs = $this->dao->select('*')->from(TABLE_DOC)->where('lib')->eq($rootID)->andWhere('deleted')->eq(0)->fetchAll();
|
||||
$docs = $this->dao->select('*')->from(TABLE_DOC)
|
||||
->where('lib')->eq($rootID)
|
||||
->andWhere('assetLib')->eq(0)
|
||||
->andWhere('deleted')->eq(0)
|
||||
->fetchAll();
|
||||
$moduleDocs = array();
|
||||
foreach($docs as $doc)
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ $sessionString .= session_name() . '=' . session_id();
|
||||
<div class="cell" id="content">
|
||||
<div class="detail no-padding">
|
||||
<div class="detail-title no-padding doc-title">
|
||||
<div class="title"><?php echo $doc->title;?></div>
|
||||
<div class="title" title="<?php echo $doc->title;?>"><?php echo $doc->title;?></div>
|
||||
<div class="info">
|
||||
<div class="version">
|
||||
<div class='btn-group'>
|
||||
|
||||
Reference in New Issue
Block a user