blob: 424a857d551b7193824044322037c01c9639b841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
// please leave it as it is ;)
define("TINYEMOTES_NAME", "TinyEmotes");
define("TINYEMOTES_VERSION", "0.3.0");
define("TINYEMOTES_LINK", "https://github.com/ilotterytea/tinyemotes");
if ($s = file_get_contents("../.git/refs/heads/master")) {
define("TINYEMOTES_COMMIT", $s);
} else {
define("TINYEMOTES_COMMIT", null);
}
|