#1049 closed defect (fixed)
wpmu plugin-management mass activation
| Reported by: | yannux | Owned by: | GamerZ |
|---|---|---|---|
| Priority: | high | Component: | wp-polls |
| Severity: | normal | Keywords: | |
| Cc: |
Description
Mass activating wp-polls (2.50) on wpmu doesn't work because of
### Polls Table Name global $wpdb; $wpdb->pollsq = $wpdb->prefix.'pollsq'; $wpdb->pollsa = $wpdb->prefix.'pollsa'; $wpdb->pollsip = $wpdb->prefix.'pollsip';
is defined when the file is include once.
So I add between lines 1463,1464 :
$wpdb->pollsq = $wpdb->prefix.'pollsq'; $wpdb->pollsa = $wpdb->prefix.'pollsa'; $wpdb->pollsip = $wpdb->prefix.'pollsip';
making them defined with good $wpdb->prefix
Change History (4)
comment:1 Changed 12 months ago by garyc40
- Resolution set to fixed
- Status changed from new to closed
comment:2 Changed 12 months ago by garyc40
In [550293]:
comment:3 Changed 12 months ago by garyc40
In [550318]:
comment:4 Changed 9 months ago by garyc40
In [586481]:
Note: See
TracTickets for help on using
tickets.

In [550283]: