diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-31 18:04:01 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-31 18:04:01 -0700 |
commit | bff1e215cce27706fabe9f1764bce5c5a5b3b434 (patch) | |
tree | a8d8b0b4e38b242eb583bbd8996b60cf64540040 /Zotlabs/Module | |
parent | 6efef3922b9fe6864c0855e6407b77ca54af70c5 (diff) | |
download | volse-hubzilla-bff1e215cce27706fabe9f1764bce5c5a5b3b434.tar.gz volse-hubzilla-bff1e215cce27706fabe9f1764bce5c5a5b3b434.tar.bz2 volse-hubzilla-bff1e215cce27706fabe9f1764bce5c5a5b3b434.zip |
pdledit - show original/system layout text for comparison
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Pdledit.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Zotlabs/Module/Pdledit.php b/Zotlabs/Module/Pdledit.php index f8af470ac..9b86b599b 100644 --- a/Zotlabs/Module/Pdledit.php +++ b/Zotlabs/Module/Pdledit.php @@ -77,8 +77,10 @@ class Pdledit extends \Zotlabs\Web\Controller { } $t = get_pconfig(local_channel(),'system',$module); - if(! $t) - $t = file_get_contents(theme_include($module)); + $s = file_get_contents(theme_include($module)); + if(! $t) { + $t = $s; + } if(! $t) { notice( t('Layout not found.') . EOL); return ''; @@ -89,7 +91,9 @@ class Pdledit extends \Zotlabs\Web\Controller { '$mname' => t('Module Name:'), '$help' => t('Layout Help'), '$another' => t('Edit another layout'), + '$original' => t('System layout'), '$module' => argv(1), + '$src' => $s, '$content' => htmlspecialchars($t,ENT_COMPAT,'UTF-8'), '$submit' => t('Submit') )); |