diff options
author | friendica <info@friendica.com> | 2011-11-23 23:17:26 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-23 23:17:26 -0800 |
commit | b795ce4fe7c952600ed3520d6822006a2190d4f8 (patch) | |
tree | 0c0173b3e05598bbc6cbbb9281f02ad923d37fa3 /include/remoteupdate.php | |
parent | fe0c039d487962359ac995eb5ec555c3a111ad1c (diff) | |
download | volse-hubzilla-b795ce4fe7c952600ed3520d6822006a2190d4f8.tar.gz volse-hubzilla-b795ce4fe7c952600ed3520d6822006a2190d4f8.tar.bz2 volse-hubzilla-b795ce4fe7c952600ed3520d6822006a2190d4f8.zip |
little stuff - name change, live updates, new network types
Diffstat (limited to 'include/remoteupdate.php')
-rw-r--r-- | include/remoteupdate.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/remoteupdate.php b/include/remoteupdate.php index aa30da06f..9effc9b6e 100644 --- a/include/remoteupdate.php +++ b/include/remoteupdate.php @@ -1,7 +1,7 @@ <?php -/* update friendika */ +/* update friendica */ define('APIBASE', 'http://github.com/api/v2/'); -define('F9KREPO', 'friendika/friendika'); +define('F9KREPO', 'friendica/friendica'); $up_totalfiles = 0; $up_countfiles = 0; @@ -19,14 +19,14 @@ function checkUpdate(){ if ($tag==0.0) return false; $f = fetch_url("https://raw.github.com/".F9KREPO."/".$tag."/boot.php","r"); - preg_match("|'FRIENDIKA_VERSION', *'([^']*)'|", $f, $m); + preg_match("|'FRIENDICA_VERSION', *'([^']*)'|", $f, $m); $version = $m[1]; - $lv = explode(".", FRIENDIKA_VERSION); + $lv = explode(".", FRIENDICA_VERSION); $rv = explode(".",$version); foreach($lv as $i=>$v){ if ((int)$lv[$i] < (int)$rv[$i]) { - return array($tag, $version, "https://github.com/friendika/friendika/zipball/".$tag); + return array($tag, $version, "https://github.com/friendica/friendica/zipball/".$tag); break; } } |