diff options
author | friendica <info@friendica.com> | 2013-12-15 20:59:52 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-15 20:59:52 -0800 |
commit | 5a3a72604bf0e1c7ec04fbdbdee7a08c2a340c5a (patch) | |
tree | 641255e82ace2196a957fd091c3303aeaa8117ec /view | |
parent | 61a7bfb9426c36b7cac0058f5fe5a0c5c6d4ae71 (diff) | |
download | volse-hubzilla-5a3a72604bf0e1c7ec04fbdbdee7a08c2a340c5a.tar.gz volse-hubzilla-5a3a72604bf0e1c7ec04fbdbdee7a08c2a340c5a.tar.bz2 volse-hubzilla-5a3a72604bf0e1c7ec04fbdbdee7a08c2a340c5a.zip |
some re-work of mod_sources
Diffstat (limited to 'view')
-rw-r--r-- | view/js/mod_sources.js | 4 | ||||
-rw-r--r-- | view/tpl/sources_edit.tpl | 2 | ||||
-rw-r--r-- | view/tpl/sources_new.tpl | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/view/js/mod_sources.js b/view/js/mod_sources.js index 2efc7ad5d..49880b38f 100644 --- a/view/js/mod_sources.js +++ b/view/js/mod_sources.js @@ -6,10 +6,10 @@ $(document).ready(function() { width: 250, id: 'id-name-ac', onSelect: function(value,data) { - $("#id_xchan").val(data); + $("#id_abook").val(data); } }); - a.setOptions({ autoSubmit: true, params: { type: 'a' }}); + a.setOptions({ params: { type: 'a' }}); }); diff --git a/view/tpl/sources_edit.tpl b/view/tpl/sources_edit.tpl index 6e9cee32b..34023e03f 100644 --- a/view/tpl/sources_edit.tpl +++ b/view/tpl/sources_edit.tpl @@ -4,7 +4,7 @@ <form action="sources" method="post"> <input type="hidden" name="source" value="{{$id}}" /> -<input type="hidden" id="id_xchan" name="xchan" value="{{$xchan}}" /> +<input type="hidden" id="id_abook" name="abook" value="{{$abook}}" /> {{include file="field_input.tpl" field=$name}} {{include file="field_textarea.tpl" field=$words}} diff --git a/view/tpl/sources_new.tpl b/view/tpl/sources_new.tpl index 267245ae4..3c6a4be30 100644 --- a/view/tpl/sources_new.tpl +++ b/view/tpl/sources_new.tpl @@ -3,7 +3,7 @@ <div class="descriptive-text">{{$desc}}</div> <form action="sources" method="post"> -<input type="hidden" id="id_xchan" name="xchan" value="{{$xchan}}" /> +<input type="hidden" id="id_abook" name="abook" value="{{$abook}}" /> {{include file="field_input.tpl" field=$name}} {{include file="field_textarea.tpl" field=$words}} |