diff options
author | friendica <info@friendica.com> | 2012-12-26 03:49:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-26 03:49:50 -0800 |
commit | c8292b3cddf0a29236cb981111beb4587d7be411 (patch) | |
tree | d9e5ed5afbf5ca90d04325c70949ea436a40c578 /view | |
parent | 1aeea64311d1ae104b8fe513bf13c6f7eeb4fa42 (diff) | |
download | volse-hubzilla-c8292b3cddf0a29236cb981111beb4587d7be411.tar.gz volse-hubzilla-c8292b3cddf0a29236cb981111beb4587d7be411.tar.bz2 volse-hubzilla-c8292b3cddf0a29236cb981111beb4587d7be411.zip |
remove the private keywords stuff to reduce directory and search complexity
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/profile_advanced.tpl | 6 | ||||
-rw-r--r-- | view/tpl/profile_edit.tpl | 9 |
2 files changed, 4 insertions, 11 deletions
diff --git a/view/tpl/profile_advanced.tpl b/view/tpl/profile_advanced.tpl index b02b7f27d..0bc4d3fd3 100644 --- a/view/tpl/profile_advanced.tpl +++ b/view/tpl/profile_advanced.tpl @@ -40,10 +40,10 @@ </dl> {{ endif }} -{{ if $profile.pub_keywords }} +{{ if $profile.keywords }} <dl id="aprofile-tags" class="aprofile"> - <dt>$profile.pub_keywords.0</dt> - <dd>$profile.pub_keywords.1</dd> + <dt>$profile.keywords.0</dt> + <dd>$profile.keywords.1</dd> </dl> {{ endif }} diff --git a/view/tpl/profile_edit.tpl b/view/tpl/profile_edit.tpl index eb0bb1eed..a0ab681fb 100644 --- a/view/tpl/profile_edit.tpl +++ b/view/tpl/profile_edit.tpl @@ -143,17 +143,10 @@ $sexual <div id="profile-edit-pubkeywords-wrapper" > <label id="profile-edit-pubkeywords-label" for="profile-edit-pubkeywords" >$lbl_pubkey </label> -<input type="text" size="32" name="pub_keywords" id="profile-edit-pubkeywords" title="$lbl_ex2" value="$pub_keywords" /> +<input type="text" size="32" name="keywords" id="profile-edit-pubkeywords" title="$lbl_ex2" value="$keywords" /> </div><div id="profile-edit-pubkeywords-desc">$lbl_pubdsc</div> <div id="profile-edit-pubkeywords-end"></div> -<div id="profile-edit-prvkeywords-wrapper" > -<label id="profile-edit-prvkeywords-label" for="profile-edit-prvkeywords" >$lbl_prvkey </label> -<input type="text" size="32" name="prv_keywords" id="profile-edit-prvkeywords" title="$lbl_ex2" value="$prv_keywords" /> -</div><div id="profile-edit-prvkeywords-desc">$lbl_prvdsc</div> -<div id="profile-edit-prvkeywords-end"></div> - - <div class="profile-edit-submit-wrapper" > <input type="submit" name="submit" class="profile-edit-submit-button" value="$submit" /> </div> |