Skip to content
Snippets Groups Projects
Commit c5d8872f authored by Maximilian Giller's avatar Maximilian Giller
Browse files

Fixed wrong parameter when saving space

parent e17f40bb
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ function handle_get($request_data) {
function handle_post($request_data) {
$file_path = get_space_file_path($request_data["space_id"]);
file_put_contents($file_path, $request_data["graph"], "w");
file_put_contents($file_path, $request_data["graph"]);
}
function get_space_file_path($space_id) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment