diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-29 10:18:26 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-29 10:18:26 -0400 |
commit | 63a97ff6fc313372d9cb439a621f12fdecc2fac1 (patch) | |
tree | b77b9e3133def566a34530727a64d3915b2d2aec /Zotlabs/Module | |
parent | ab54bf514921ae3fe0fafcdf154364815ed6375f (diff) | |
download | volse-hubzilla-63a97ff6fc313372d9cb439a621f12fdecc2fac1.tar.gz volse-hubzilla-63a97ff6fc313372d9cb439a621f12fdecc2fac1.tar.bz2 volse-hubzilla-63a97ff6fc313372d9cb439a621f12fdecc2fac1.zip |
Git commit made for the page edits when the page is saved.
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Wiki.php | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index 5d293e6f0..70d326faf 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -268,9 +268,20 @@ class Wiki extends \Zotlabs\Web\Controller { } $saved = wiki_save_page(array('resource_id' => $resource_id, 'name' => $pagename, 'content' => $content)); if($saved['success']) { - json_return_and_die(array('success' => true)); + $ob = \App::get_observer(); + $commit = wiki_git_commit(array( + 'commit_msg' => 'Updated ' . $pagename, + 'resource_id' => $resource_id, + 'observer' => $ob, + 'files' => array($pagename) + )); + if($commit['success']) { + json_return_and_die(array('message' => 'Wiki git repo commit made', 'success' => true)); + } else { + json_return_and_die(array('message' => 'Error making git commit','success' => false)); + } } else { - json_return_and_die(array('success' => false)); + json_return_and_die(array('message' => 'Error saving page', 'success' => false)); } } |