Fixed inconsistent usage of elseif
authorSoftCreatR <sascha@softcreatr.de>
Mon, 20 May 2013 13:15:22 +0000 (15:15 +0200)
committerSoftCreatR <sascha@softcreatr.de>
Mon, 20 May 2013 13:15:22 +0000 (15:15 +0200)
In the past, elseif was used within templates. Now, you've mixed up the
usage of else if and elseif.

com.woltlab.wcf/template/headInclude.tpl

index d783ca2cd0039253da43a4bedc5e9df3bdf5a4bb..335f8d97589eca86bdeaebf4dfd62e9f338a5448 100644 (file)
@@ -18,7 +18,7 @@
 {if JQUERY_SOURCE == 'google'}
 <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
 <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
-{else if JQUERY_SOURCE == 'microsoft'}
+{elseif JQUERY_SOURCE == 'microsoft'}
 <script type="text/javascript" src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.0.min.js"></script>
 <script type="text/javascript" src="//ajax.aspnetcdn.com/ajax/jquery.ui/1.10.2/jquery-ui.min.js"></script>
 {else}