Commit abc8e3f1c171242b5a16cab420e0cd33d2594a7d
1 parent
d81ff854
KTS-1687
"Double quote to single quote conversion" Fixed. Reviewed by: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6250 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
help.php
| ... | ... | @@ -128,7 +128,7 @@ class HelpDispatcher extends KTStandardDispatcher { |
| 128 | 128 | $this->oPage->setTitle($aHelpData['title']); |
| 129 | 129 | $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => $aHelpData['title']); |
| 130 | 130 | $oTemplating =& KTTemplating::getSingleton(); |
| 131 | - $oTemplate = $oTemplating->loadTemplate("ktcore/help_with_edit"); | |
| 131 | + $oTemplate = $oTemplating->loadTemplate('ktcore/help_with_edit'); | |
| 132 | 132 | $aTemplateData = array( |
| 133 | 133 | 'context' => $this, |
| 134 | 134 | 'help_body' => $aHelpData['body'], | ... | ... |