File tree 4 files changed +8
-39
lines changed
4 files changed +8
-39
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ <h1><a href="{% url 'home' %}" rel="home"><span id="logo">phpMyAdmin</span></a>
72
72
< li > Copyright © 2003 - {{ current_year }} < span class ="vcard "> < a class ="url org fn " href ="{% url 'team' %} "> phpMyAdmin contributors</ a > < a href ="mailto:developers@phpmyadmin.net " class ="email "> </ a > </ span > </ li >
73
73
< li > < a href ="{% url 'license' %} " rel ="license "> License</ a > </ li >
74
74
< li > < a href ="{% url 'donate' %} " rel ="payment " title ="Support phpMyAdmin by donating money! "> Donate</ a > </ li >
75
- < li > < a href ="{% url 'search' %} " title ="Search for phpMyAdmin related questions "> Search</ a > </ li >
76
75
< li > < a href ="{% url 'about-website' %} " title ="Information about website "> About</ a > </ li >
77
76
< li class ="logo "> < a href ="https://google.com/+phpmyadmin "> < i class ="fa fa-google-plus-square "> </ i > </ a > </ li >
78
77
< li class ="logo "> < a href ="https://twitter.com/phpmya "> < i class ="fa fa-twitter-square "> </ i > </ a > </ li >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 221
221
),
222
222
name = 'donate'
223
223
),
224
- url (
225
- r'^search/$' ,
226
- PMAView .as_view (
227
- template_name = 'search.html' ,
228
- title = 'Search' ,
229
- ),
230
- name = 'search'
231
- ),
232
224
url (
233
225
r'^about-website/$' ,
234
226
PMAView .as_view (
471
463
permanent = True ,
472
464
)
473
465
),
466
+ url (
467
+ r'^search/$' ,
468
+ RedirectView .as_view (
469
+ pattern_name = 'home' ,
470
+ permanent = True ,
471
+ )
472
+ ),
474
473
url (
475
474
r'^home_page/sitemap\.xml$' ,
476
475
RedirectView .as_view (
Original file line number Diff line number Diff line change 37
37
'stats' : 'team' ,
38
38
'sitemap' : 'home' ,
39
39
'gophp5' : 'home' ,
40
+ 'search' : 'home' ,
40
41
41
42
# Alive pages
42
43
'15-years' : '15-years' ,
52
53
'index' : 'home' ,
53
54
'license' : 'license' ,
54
55
'news' : 'news' ,
55
- 'search' : 'search' ,
56
56
'sponsors' : 'sponsors' ,
57
57
'support' : 'support' ,
58
58
'team' : 'team' ,
You can’t perform that action at this time.
0 commit comments