Commit 4ef02da9 authored by Frank Bergmann's avatar Frank Bergmann

- Fixed export_vars brace vs. brackets

parent 94f26001
...@@ -899,7 +899,7 @@ ad_proc -public im_conf_item_list_component { ...@@ -899,7 +899,7 @@ ad_proc -public im_conf_item_list_component {
# Include a link to go to the next page # Include a link to go to the next page
set next_start_idx [expr $end_idx + 1] set next_start_idx [expr $end_idx + 1]
set conf_item_max_entries_per_page $max_entries_per_page set conf_item_max_entries_per_page $max_entries_per_page
set next_page_url "$current_page_url?[export_url_vars conf_item_id conf_item_object_id conf_item_max_entries_per_page order_by]&conf_item_start_idx=$next_start_idx&$pass_through_vars_html" set next_page_url "$current_page_url?[export_vars -url {conf_item_id conf_item_object_id conf_item_max_entries_per_page order_by}]&conf_item_start_idx=$next_start_idx&$pass_through_vars_html"
set next_page_html "($remaining_items more) <A href=\"$next_page_url\">&gt;&gt;</a>" set next_page_html "($remaining_items more) <A href=\"$next_page_url\">&gt;&gt;</a>"
} else { } else {
set next_page_html "" set next_page_html ""
...@@ -910,7 +910,7 @@ ad_proc -public im_conf_item_list_component { ...@@ -910,7 +910,7 @@ ad_proc -public im_conf_item_list_component {
# at least 1 previous row. add a previous page link # at least 1 previous row. add a previous page link
set previous_start_idx [expr $start_idx - $max_entries_per_page] set previous_start_idx [expr $start_idx - $max_entries_per_page]
if { $previous_start_idx < 0 } { set previous_start_idx 0 } if { $previous_start_idx < 0 } { set previous_start_idx 0 }
set previous_page_html "<A href=$current_page_url?[export_url_vars conf_item_id]&$pass_through_vars_html&order_by=$order_by&conf_item_start_idx=$previous_start_idx>&lt;&lt;</a>" set previous_page_html "<A href=$current_page_url?[export_vars -url {conf_item_id}]&$pass_through_vars_html&order_by=$order_by&conf_item_start_idx=$previous_start_idx>&lt;&lt;</a>"
} else { } else {
set previous_page_html "" set previous_page_html ""
} }
...@@ -923,7 +923,7 @@ ad_proc -public im_conf_item_list_component { ...@@ -923,7 +923,7 @@ ad_proc -public im_conf_item_list_component {
<table width='100%'> <table width='100%'>
<tr> <tr>
<td align=left> <td align=left>
<a href=\"/intranet-confdb/new?[export_url_vars return_url]\" <a href=\"/intranet-confdb/new?[export_vars -url {return_url}]\"
>[lang::message::lookup "" intranet-confdb.New_Conf_Item "New Conf Item"]</a> >[lang::message::lookup "" intranet-confdb.New_Conf_Item "New Conf Item"]</a>
</td> </td>
<td align=right> <td align=right>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment