Skip to content

Commit

Permalink
MDL-48644 backup tool_log: Fixing coding style
Browse files Browse the repository at this point in the history
Wrap long function definition
to next line.
  • Loading branch information
polothy committed Dec 29, 2014
1 parent 362bc07 commit 7cd112d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/tool/log/classes/log/manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ public function dispose() {
* @param string $ip Override the IP, should only be used for restore.
* @param int $time Override the log time, should only be used for restore.
*/
public function legacy_add_to_log($courseid, $module, $action, $url = '', $info = '', $cm = 0, $user = 0, $ip = null, $time = null) {
public function legacy_add_to_log($courseid, $module, $action, $url = '', $info = '',
$cm = 0, $user = 0, $ip = null, $time = null) {
$this->init();
if (isset($this->stores['logstore_legacy'])) {
$this->stores['logstore_legacy']->legacy_add_to_log($courseid, $module, $action, $url, $info, $cm, $user, $ip, $time);
Expand Down

0 comments on commit 7cd112d

Please sign in to comment.