diff options
author | friendica <info@friendica.com> | 2011-12-04 03:01:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-04 03:01:04 -0800 |
commit | 8a489b47624a7d5dc36b2e5b5ac820adbe52841c (patch) | |
tree | 5d874509e6e3874da1f085b85362cbae249619a5 | |
parent | acd28bb1ef2b1bc37ffde0bb4dbb5e997d6259a2 (diff) | |
download | volse-hubzilla-8a489b47624a7d5dc36b2e5b5ac820adbe52841c.tar.gz volse-hubzilla-8a489b47624a7d5dc36b2e5b5ac820adbe52841c.tar.bz2 volse-hubzilla-8a489b47624a7d5dc36b2e5b5ac820adbe52841c.zip |
unix style homedir
-rw-r--r-- | boot.php | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -305,7 +305,10 @@ class App { if(x($_GET,'q')) $this->cmd = trim($_GET['q'],'/\\'); + // unix style "homedir" + if(substr($this->cmd,0,1) === '~') + $this->cmd = 'profile/' . substr($this->cmd,1); /** * |