diff options
author | Friendika <info@friendika.com> | 2011-05-05 04:29:45 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-05 04:29:45 -0700 |
commit | 26d748f6d8d7616b4a337350df69898716ec043e (patch) | |
tree | 0d09b4644331432b59b5f75c0a0dad121b77c77a /boot.php | |
parent | b3fa03d3b4175b565ae7ed9106cb83c43801b558 (diff) | |
parent | 976d1eaf4312f8c45af0e16205f573afc5be5136 (diff) | |
download | volse-hubzilla-26d748f6d8d7616b4a337350df69898716ec043e.tar.gz volse-hubzilla-26d748f6d8d7616b4a337350df69898716ec043e.tar.bz2 volse-hubzilla-26d748f6d8d7616b4a337350df69898716ec043e.zip |
Merge pull request #96 from fabrixxm/api
Status.net Api
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -288,7 +288,7 @@ class App { $this->argv = explode('/',$this->cmd); $this->argc = count($this->argv); if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) { - $this->module = $this->argv[0]; + $this->module = str_replace(".", "_", $this->argv[0]); } else { $this->module = 'home'; |