public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] tor.cgi: fix calling Perl location module functions
@ 2020-10-09 19:15 Peter Müller
  0 siblings, 0 replies; only message in thread
From: Peter Müller @ 2020-10-09 19:15 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1082 bytes --]

Fixes: #12492

Cc: Stefan Schantl <stefan.schantl(a)ipfire.org>
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 html/cgi-bin/tor.cgi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/html/cgi-bin/tor.cgi b/html/cgi-bin/tor.cgi
index 28dec6cf0..c1a9e509c 100644
--- a/html/cgi-bin/tor.cgi
+++ b/html/cgi-bin/tor.cgi
@@ -322,14 +322,14 @@ END
 					<select name='TOR_EXIT_COUNTRY'>
 						<option value=''>- $Lang::tr{'tor exit country any'} -</option>
 END
-
-		my @country_codes = &Location::database_countries();
+		my $db_handle = &Location::Functions::init();
+		my @country_codes = &Location::database_countries($db_handle);
 		foreach my $country_code (@country_codes) {
 			# Convert country code into upper case format.
 			$country_code = uc($country_code);
 
 			# Get country name.
-			my $country_name = &Location::Functions::get_country_name($country_code);
+			my $country_name = &Location::Functions::get_full_country_name($country_code);
 
 			print "<option value='$country_code'";
 
-- 
2.26.2

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-10-09 19:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-09 19:15 [PATCH] tor.cgi: fix calling Perl location module functions Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox