222e1e5583
- Fixed the "blog it" image size. Patch #49 by Al. - Some SQL performance improvements to the forum module. This should also be more PostgreSQL safe. Patch by me. mysql> SELECT n.nid, n.created AS timestamp, u.name AS name, u.uid AS uid FROM forum f, node n LEFT JOIN users u ON n.uid = u.uid WHERE f.tid = 2 AND n.nid = f.nid AND n.type = 'forum' AND n.status = 1 ORDER BY timestamp DESC LIMIT 1, 0; ==> 0.63 sec changed to: mysql> SELECT n.nid, n.created AS timestamp, u.name AS name, u.uid AS uid FROM forum f LEFT JOIN node n ON n.nid = f.nid LEFT JOIN users u ON n.uid = u.uid WHERE f.tid = 2 AND n.nid = f.nid AND n.type = 'forum' AND n.status = 1 ORDER BY timestamp DESC LIMIT 1, 0; ==> 0.00 sec |
||
---|---|---|
.. | ||
admin.css | ||
blog.gif | ||
drupal.css | ||
druplicon-small.gif | ||
druplicon.eps.gz | ||
druplicon.png | ||
druplicon.psp | ||
druplicon.txt | ||
linux-font-test.html | ||
menu-collapsed.gif | ||
menu-expanded.gif | ||
menu-leaf.gif | ||
powered-by-drupal-dark.png | ||
powered-by-drupal-light.png | ||
powered-by-drupal.png | ||
print.css | ||
xml.gif |