diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-19 03:26:48 -0500 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-19 03:26:48 -0500 |
commit | b6680dd405fdf6cd2784facfe799742cfaf805ab (patch) | |
tree | e9cd81aebfc67c76053792583efb0a1fe942ff6c /globe.php | |
parent | a600bd24aa5272dfd3b9f178ef9e2c81ec0525b9 (diff) | |
parent | bc57b007dfa5e6e723946143671a9db68a82f348 (diff) | |
download | pathery-b6680dd405fdf6cd2784facfe799742cfaf805ab.tar.xz |
Merge branch 'master' of git.raylu.net:pathery
Conflicts:
globe.php
pages/login.php
Diffstat (limited to 'globe.php')
-rw-r--r-- | globe.php | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -7,9 +7,10 @@ if (!session_id()) //Database login:
//include_once 'sqlEmbedded.php';
-//TODO: CONFIRM THIS DOMAIN BEFORE TRANSFER
+//!! CONFIRM THIS DOMAIN BEFORE TRANSFER
//$mydomain = "http://www.mazetd.4xg.net/";
-$mydomain = "http://www.blue.4xg.net/";
+//$mydomain = "http://www.blue.4xg.net/
+$mydomain = "http://www.pathery.com/";
function LogError($error) {
@@ -19,6 +20,12 @@ function LogError($error) { fclose($fd);
}
+function linkEmblem($emblem, $orientation) {
+ $orientation = $orientation - 0;
+ $url = 'images/marks/';
+ if ($orientation == 0) return $url.$emblem;
+ return $url.'rotate.php?r='.$orientation.'&emblem='.$emblem;
+}
function soundManager1() {
return '
@@ -49,6 +56,8 @@ soundManager.setup({ soundManager.createSound({id: 'click',url: '/sounds/click.mp3'});
soundManager.createSound({id: 'sc',url: '/sounds/transmission.mp3'});
soundManager.createSound({id: 'hologram',url: '/sounds/hologram.mp3'});
+ soundManager.createSound({id: 'pit',url: '/sounds/pit.mp3'});
+ soundManager.createSound({id: 'select',url: '/sounds/select.mp3'});
}
});
</script>
|