Skip to content

Commit

Permalink
Make version notifier beta-aware
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Mar 24, 2012
1 parent 3a01fb9 commit 769c449
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion version.php
@@ -1,5 +1,9 @@
<?php
require_once('version.inc.php');
if (isset($_GET['channel']) && $_GET['channel']=='beta') {
require_once('version.beta.inc.php');
} else {
require_once('version.inc.php');
}
header('Content-type: application/javascript');

echo 'ThinkUpAppVersion.serverResponse([{';
Expand Down

0 comments on commit 769c449

Please sign in to comment.