summaryrefslogtreecommitdiff
path: root/httemplate/search/svc_Smart.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/search/svc_Smart.html')
-rw-r--r--httemplate/search/svc_Smart.html49
1 files changed, 28 insertions, 21 deletions
diff --git a/httemplate/search/svc_Smart.html b/httemplate/search/svc_Smart.html
index 93dbbeadd..4d8f3e20e 100644
--- a/httemplate/search/svc_Smart.html
+++ b/httemplate/search/svc_Smart.html
@@ -1,22 +1,29 @@
-<%
+%
+%
+%if ( $cgi->param('search_svc') =~ /\.[a-z]{2,8}$/i ) {
+%
+% # looks (enough) like a domain
+%
+%
+<% $cgi->redirect('svc_domain.cgi?domain='. uri_escape( $cgi->param('search_svc') ) ) %>
+%
+%
+%} elsif ( $cgi->param('search_svc') =~ /\w/ ) {
+%
+% #looks (enough) like a username
+%
+%
+<% $cgi->redirect('svc_acct.cgi?username_type=Exact;username='. uri_escape( $cgi->param('search_svc') ) ) %>
+%
+%
+%} else {
+%
+%
+<% include('/elements/header.html', 'Unrecognized service string') %>
+ <% include('/elements/footer.html') %>
+%
+%
+%}
+%
+%
-if ( $cgi->param('search_svc') =~ /\.[a-z]{2,8}$/i ) {
-
- # looks (enough) like a domain
-
- %><%= $cgi->redirect('svc_domain.cgi?domain='. uri_escape( $cgi->param('search_svc') ) ) %><%
-
-} elsif ( $cgi->param('search_svc') =~ /\w/ ) {
-
- #looks (enough) like a username
-
- %><%= $cgi->redirect('svc_acct.cgi?username_type=Exact;username='. uri_escape( $cgi->param('search_svc') ) ) %><%
-
-} else {
-
-%><%= include('/elements/header.html', 'Unrecognized service string') %>
- <%= include('/elements/footer.html') %><%
-
-}
-
-%>