diff options
| author | sbivol <sergiu@ase.md> | 2014-03-10 16:28:56 +0200 |
|---|---|---|
| committer | sbivol <sergiu@ase.md> | 2014-03-10 16:28:56 +0200 |
| commit | 5c5edadd089f3c3f13751bde3f691ad19339b551 (patch) | |
| tree | d25048b73011b1470951679fb17be87f22f61b60 | |
| parent | 6d4bddb6a62929966e4ac9a9ee9146610dc1bc02 (diff) | |
| download | pyramid-5c5edadd089f3c3f13751bde3f691ad19339b551.tar.gz pyramid-5c5edadd089f3c3f13751bde3f691ad19339b551.tar.bz2 pyramid-5c5edadd089f3c3f13751bde3f691ad19339b551.zip | |
Remove extra concatenation from request.static_url()
fixes issue #1266
| -rw-r--r-- | docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt b/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt index d1fea0d7f..3292dfd90 100644 --- a/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt +++ b/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt @@ -4,10 +4,10 @@ <title>WikiPage: Add/Edit</title> <tal:block tal:repeat="reqt view.reqts['css']"> <link rel="stylesheet" type="text/css" - href="${request.static_url('deform:static/' + reqt)}"/> + href="${request.static_url(reqt)}"/> </tal:block> <tal:block tal:repeat="reqt view.reqts['js']"> - <script src="${request.static_url('deform:static/' + reqt)}" + <script src="${request.static_url(reqt)}" type="text/javascript"></script> </tal:block> </head> |
