diff options
author | Simon <simon@kisikew.org> | 2012-04-10 20:47:55 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-04-10 20:47:55 -0700 |
commit | 0c4e9912b02cfeefba81db91ee958d9d50fdb45b (patch) | |
tree | 7c9c7eefa2190ab0ac9229ad77e2a74338779047 /mod/newmember.php | |
parent | 0fa932853c76d8aca9fecf125d4c2d6816fb1a4a (diff) | |
parent | 6b414d3de4a25b0f5428b8ef4f315a4f158ac825 (diff) | |
download | volse-hubzilla-0c4e9912b02cfeefba81db91ee958d9d50fdb45b.tar.gz volse-hubzilla-0c4e9912b02cfeefba81db91ee958d9d50fdb45b.tar.bz2 volse-hubzilla-0c4e9912b02cfeefba81db91ee958d9d50fdb45b.zip |
Merge pull request #225 from simonlnu/master
[fixes] absolute links in docs and newmember.php; breaks sub-dir installs
Diffstat (limited to 'mod/newmember.php')
-rw-r--r-- | mod/newmember.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/newmember.php b/mod/newmember.php index 683463ecb..a423d11b8 100644 --- a/mod/newmember.php +++ b/mod/newmember.php @@ -13,7 +13,7 @@ function newmember_content(&$a) { $o .= '<ul>'; - $o .= '<li>' . '<a target="newmember" href="/help/guide">' . t('On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, connect to Facebook, make some new connections, and find some groups to join.') . '</a></li>' . EOL; + $o .= '<li>' . '<a target="newmember" href="help/guide">' . t('On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, connect to Facebook, make some new connections, and find some groups to join.') . '</a></li>' . EOL; $o .= '<li>' . '<a target="newmember" href="settings">' . t('On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web.') . '</a></li>' . EOL; @@ -48,4 +48,4 @@ function newmember_content(&$a) { $o .= '</div>'; return $o; -}
\ No newline at end of file +} |