Index: openacs-4/packages/acs-admin/www/auth/authority.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/www/auth/authority.tcl,v diff -u -r1.24 -r1.25 --- openacs-4/packages/acs-admin/www/auth/authority.tcl 19 Jan 2018 12:57:28 -0000 1.24 +++ openacs-4/packages/acs-admin/www/auth/authority.tcl 7 Apr 2018 19:41:47 -0000 1.25 @@ -282,8 +282,8 @@ } set run_time [util::interval_pretty -seconds $run_time_seconds] } - if { ([info exists get_doc_impl_id] && $get_doc_impl_id ne "") - && ([info exists process_doc_impl_id] && $process_doc_impl_id ne "") } { + if { [info exists get_doc_impl_id] && $get_doc_impl_id ne "" + && [info exists process_doc_impl_id] && $process_doc_impl_id ne "" } { set batch_sync_run_url [export_vars -base batch-job-run { authority_id }] template::add_confirm_handler \ -id batch-sync-run \ @@ -319,9 +319,9 @@ foreach element_name [auth::authority::get_sc_impl_columns] { # Only offer link if there is an implementation chosen and that implementation has # parameters to configure - if { ([info exists element_array($element_name)] && $element_array($element_name) ne "") && - [auth::driver::get_parameters -impl_id $element_array($element_name)] ne ""} { - + if { [info exists element_array($element_name)] && $element_array($element_name) ne "" + && [auth::driver::get_parameters -impl_id $element_array($element_name)] ne "" + } { set configure_url [export_vars -base authority-parameters { authority_id }] break }