aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-05 04:29:45 -0700
committerFriendika <info@friendika.com>2011-05-05 04:29:45 -0700
commit26d748f6d8d7616b4a337350df69898716ec043e (patch)
tree0d09b4644331432b59b5f75c0a0dad121b77c77a /boot.php
parentb3fa03d3b4175b565ae7ed9106cb83c43801b558 (diff)
parent976d1eaf4312f8c45af0e16205f573afc5be5136 (diff)
downloadvolse-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.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 67e3d65ae..cddba996c 100644
--- a/boot.php
+++ b/boot.php
@@ -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';