Skip to content

Commit

Permalink
Fix #658 - Projects where owner has changed will not play
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Jul 28, 2017
1 parent d2c4ed3 commit b6372d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website_code/php/management/change_owner.php
Expand Up @@ -64,12 +64,12 @@
$ok = db_query_one($query, $params);


if($ok) {
if($ok !== false) {

echo "Update successful";

}else{
die('database error');
die('database error');

}

Expand Down

0 comments on commit b6372d9

Please sign in to comment.