aboutsummaryrefslogtreecommitdiffstats
path: root/mod/directory.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-07-24 21:29:07 -0700
committerfriendica <info@friendica.com>2014-07-24 21:29:07 -0700
commit5dcd0654d44b21503663801b8b5fb5d76ae4f015 (patch)
treecfe143f4d70e8be387e3afc430d19a7f4554f8e5 /mod/directory.php
parent1a6973a670b7137353708e838d9076be3e9b93bf (diff)
downloadvolse-hubzilla-5dcd0654d44b21503663801b8b5fb5d76ae4f015.tar.gz
volse-hubzilla-5dcd0654d44b21503663801b8b5fb5d76ae4f015.tar.bz2
volse-hubzilla-5dcd0654d44b21503663801b8b5fb5d76ae4f015.zip
always provide a profile edit entry in the nav usermenu
Diffstat (limited to 'mod/directory.php')
-rw-r--r--mod/directory.php33
1 files changed, 21 insertions, 12 deletions
diff --git a/mod/directory.php b/mod/directory.php
index b11b0d410..e80e9661d 100644
--- a/mod/directory.php
+++ b/mod/directory.php
@@ -201,18 +201,27 @@ function directory_content(&$a) {
// logger('mod_directory: entries: ' . print_r($entries,true), LOGGER_DATA);
- $o .= replace_macros($tpl, array(
- '$search' => $search,
- '$desc' => t('Find'),
- '$finddsc' => t('Finding:'),
- '$safetxt' => htmlspecialchars($search,ENT_QUOTES,'UTF-8'),
- '$entries' => $entries,
- '$dirlbl' => t('Directory'),
- '$submit' => t('Find')
- ));
-
-
- $o .= alt_pager($a,$j['records'], t('next page'), t('previous page'));
+
+ if($dynamic) {
+
+
+ }
+ else {
+
+ $o .= "<script> var page_query_args = '" . $a->query_string . "'; </script>";
+ $o .= replace_macros($tpl, array(
+ '$search' => $search,
+ '$desc' => t('Find'),
+ '$finddsc' => t('Finding:'),
+ '$safetxt' => htmlspecialchars($search,ENT_QUOTES,'UTF-8'),
+ '$entries' => $entries,
+ '$dirlbl' => t('Directory'),
+ '$submit' => t('Find')
+ ));
+
+ $o .= alt_pager($a,$j['records'], t('next page'), t('previous page'));
+
+ }
}
else {