summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-11-19 14:53:37 +0000
committerctrlaltca@gmail.com <>2011-11-19 14:53:37 +0000
commitd782ffa2a4f55cb2ef66cf80d000f2bf5c195024 (patch)
tree9d74acac5ee1b643c29e7bf93464c1aabdbb977c /buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc
parentf8a12ab249a6816082deba6d5eae037ee8a2f716 (diff)
updating phpDocumentor, part 4: patched to fix a bug in CHMdefaultConverter
Diffstat (limited to 'buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc')
-rwxr-xr-xbuildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc
index b9679a27..e5ad8172 100755
--- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc
+++ b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc
@@ -560,7 +560,7 @@ class CHMdefaultConverter extends Converter
*/
function returnSee(&$element, $eltext = false, $with_a = true)
{
- if (!$element) return false;
+ if (!is_object($element) || !$element) return false;
if (!$with_a) return $this->getId($element, false);
if (!$eltext)
{