Commit cae15b34de4e77de906cfd888189f8eb1c66d3ad
1 parent
aa08400d
Fix parse error due to typo
Submitted by: mehdi-dz SF Tracker: 1215583 git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3326 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc
| ... | ... | @@ -125,7 +125,7 @@ function getFailurePage($sMessage, $iDocTypeID) { |
| 125 | 125 | |
| 126 | 126 | function getGenericFieldsList() { |
| 127 | 127 | global $default; |
| 128 | - $aGenericDocumentFields = DocumentField::getList(array("is_generic=?"), array(true)));/*ok*/ | |
| 128 | + $aGenericDocumentFields = DocumentField::getList(array("is_generic=?", array(true)));/*ok*/ | |
| 129 | 129 | for($i = 0; $i < count($aGenericDocumentFields); $i++) { |
| 130 | 130 | $sToRender .= "<li>" . $aGenericDocumentFields[$i]->getName() . "</li>\n"; |
| 131 | 131 | } | ... | ... |