diff options
author | bbaetz%acm.org <> | 2003-06-07 13:36:18 +0200 |
---|---|---|
committer | bbaetz%acm.org <> | 2003-06-07 13:36:18 +0200 |
commit | 93b46e547ae68336276ea56e0d2f1206d31a35a6 (patch) | |
tree | 2c40a4a4f4f2c0ec9fc35f6c4a746fa7297386ac /template | |
parent | f32800e0c6b377a253c01454ce6b1b6a9b45eeb8 (diff) | |
download | bugzilla-93b46e547ae68336276ea56e0d2f1206d31a35a6.tar.gz bugzilla-93b46e547ae68336276ea56e0d2f1206d31a35a6.tar.xz |
Bug 208583 - Remove PerformSubsts from templates
r,a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/filterexceptions.pl | 1 | ||||
-rw-r--r-- | template/en/default/global/site-navigation.html.tmpl | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index b462b7bcc..d2abbdadb 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -339,7 +339,6 @@ 'bug_list.last', 'bug.bug_id', 'bug.votes', - 'PerformSubsts(Param(\'mybugstemplate\'), substs)', ], 'bug/comments.html.tmpl' => [ diff --git a/template/en/default/global/site-navigation.html.tmpl b/template/en/default/global/site-navigation.html.tmpl index 178a99167..af80a65da 100644 --- a/template/en/default/global/site-navigation.html.tmpl +++ b/template/en/default/global/site-navigation.html.tmpl @@ -73,9 +73,8 @@ [%# *** Preset Queries *** %] [% IF user.showmybugslink %] [% user_login = user.login FILTER url_quote %] - [% substs = { userid => user_login } %] <link rel="Preset Queries" title="My Bugs" - href="[% PerformSubsts(Param('mybugstemplate'), substs) %]"> + href="[% Param('mybugstemplate').replace('%userid%', user_login) %]"> [% END %] [% FOREACH q = user.queries %] |