Skip to content

Commit

Permalink
Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshf committed Jan 26, 2016
1 parent c881fbd commit 53f19b1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Lists Readme

Lists is a simple app to make lists of things you need to remember. It provides an attractive way to manage multiple lists.

Note: Lists is no longer actively maintained, for a similar product check out [chore](https://github.com/joshf/Chore)

Features:
---------

Expand Down
2 changes: 1 addition & 1 deletion assets/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
//Lists, Copyright Josh Fradley (http://github.com/joshf/Lists)

//Define version across the script
$version = "2.0Beta";
$version = "2.0";

?>
2 changes: 1 addition & 1 deletion license.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Josh Fradley
Copyright (c) 2016 Josh Fradley

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 0 additions & 2 deletions view.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

//Lists, Copyright Josh Fradley (http://github.com/joshf/Lists)

require_once("assets/version.php");

if (!file_exists("config.php")) {
die("Error: Config file not found!");
}
Expand Down
2 changes: 1 addition & 1 deletion worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@

} elseif ($action == "generateapikey") {
$api_key = substr(str_shuffle(MD5(microtime())), 0, 50);
mysqli_query($con, "UPDATE `users` SET `api_key` = \"$api_key\" WHERE `id` = \"" . $_SESSION["indication_user"] . "\"");
mysqli_query($con, "UPDATE `users` SET `api_key` = \"$api_key\" WHERE `id` = \"" . $_SESSION["lists_user"] . "\"");
echo $api_key;
} else {
die("Error: Action not recognised!");
Expand Down

0 comments on commit 53f19b1

Please sign in to comment.