Ah, thanx a lot. Still very curious why my thing limited it to five posts, but jbrndt ‘s suggestion works. Thanx a lot!
I’m using it as follows:
<?php
if (is_page('galerie')) {
query_posts('category_name=galerie&showposts=99999999'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></h2><br />
<div class="thecontent"><?php the_content(); ?></div>
<div class="postspace"> </div>
</div>
<?php endwhile; ?>
<?php
} else { ...