Skip to content

Commit

Permalink
Fix dumb syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
xybu committed Jan 7, 2015
1 parent c57a2b0 commit ec6c9ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ga-include/ga-webhook.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function RouteEvent() {
];
$file_name = $this->data['project_id'] . '_' . $delegate_key . '.json';

if (!is_dir(getcwd() . '/pushes')) mkdir(getcwd() . '/pushes', 0770)
if (!is_dir(getcwd() . '/pushes')) mkdir(getcwd() . '/pushes', 0770);

file_put_contents(getcwd() . '/pushes/' . $file_name, json_encode($file_data));

Expand Down

0 comments on commit ec6c9ca

Please sign in to comment.