Commit 0d16ce81 authored by Jakob Moser's avatar Jakob Moser
Browse files

Use double instead of single quotes

parent 6be7455a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ get_header();
        <?php if(is_category()) {
            single_cat_title();
        } elseif (is_archive()) {
            single_month_title(' ');
            single_month_title(" ");
        } else {
            echo "Blog";
        } ?>
@@ -25,16 +25,16 @@ get_header();

    <h2>Kategorien</h2>
    <ul class="categories seamless box-links">
        <?php wp_list_categories(array('title_li'=>'')); ?>
        <?php wp_list_categories(array("title_li"=>"")); ?>
    </ul>

    <h2>Archiv</h2>
    <select onchange="document.location.href=this.options[this.selectedIndex].value;">
        <option>nach Monat</option>
        <?php wp_get_archives(array('format'=>'option')); ?>
        <?php wp_get_archives(array("format"=>"option")); ?>
    </select>

    <a href="<?php bloginfo('rss2_url'); ?>" class="rss">
    <a href="<?php bloginfo("rss2_url"); ?>" class="rss">
        zum RSS-Feed
    </a>
</aside>