Search Results for 'code'
-
Search Results
-
Hope this is the right place. I just installed the latest svn version on my local pc, and got the forementioned error twice (also with topic_slug field). Running mysql 5.0.
Patch:
Index: upgrade-schema.php
===================================================================
--- upgrade-schema.php (revision 805)
+++ upgrade-schema.php (working copy)
@@ -4,7 +4,7 @@
$bb_queries = "CREATE TABLE $bbdb->forums (
forum_id int(10) NOT NULL auto_increment,
forum_name varchar(150) NOT NULL default '',
- forum_slug text NOT NULL default '',
+ forum_slug text NOT NULL,
forum_desc text NOT NULL,
forum_parent int(10) NOT NULL default '0',
forum_order int(10) NOT NULL default '0',
@@ -31,7 +31,7 @@
CREATE TABLE $bbdb->topics (
topic_id bigint(20) NOT NULL auto_increment,
topic_title varchar(100) NOT NULL default '',
- topic_slug text NOT NULL default '',
+ topic_slug text NOT NULL,
topic_poster bigint(20) NOT NULL default '0',
topic_poster_name varchar(40) NOT NULL default 'Anonymous',
topic_last_poster bigint(20) NOT NULL default '0',Regards,
When i was using author.php for my wordpress profile i used the following code to show the latest blog posts i had made
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
- ” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>
<?php the_title(); ?>
Posted @ <?php the_time(‘d M Y’); ?><?php endwhile; else: ?>
<?php _e(‘Well well, it looks as if this user has no posts. Nevermind!’); ?>
<?php endif; ?>
This doesn’t work in my bbpress profile, even though i have the 2 integrated. Any ideas of how i could get it to work?
- ” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>