diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-10-16 20:13:22 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-10-16 20:13:22 +0000 |
commit | 33a3502dfee073325f5046baee655e6a2bdb29ec (patch) | |
tree | 7632ce5324998a3dac61b975cc2b3e24e1080063 /modules/aggregator | |
parent | 2ec1512419549fa48fb9925b8cd31e239864769d (diff) | |
download | brdo-33a3502dfee073325f5046baee655e6a2bdb29ec.tar.gz brdo-33a3502dfee073325f5046baee655e6a2bdb29ec.tar.bz2 |
- Removed a node's link ID (lid) as discussed on the mailing list. See
'updates/3.00-to.x.xx.mysql' for the required MySQL updates.
- Renamed some "author" fields to "uid" fields for sake of consistency.
- Fixed the coding style of some PHP files.
- Fixed the moderation queue (fairly untested though).
- Re-introduced the temporary SQL table in _node_get().
- Added a missing 'auto_increment' to 'updates/3.00-to-x.xx.mysql'.
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 7798d1f5f..2ac1b690c 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -95,7 +95,7 @@ function import_get_bundles($attributes = 0) { $i = 0; while ($bundle = db_fetch_object($result)) { $block[$i][subject] = $bundle->title; - $block[$i][content] = import_bundle_block($bundle->attributes) ."<p><div align=\"right\"><a href=\"module.php?mod=import&op=bundle&id=$bundle->bid\">". t("details") ."</a></div></p>"; + $block[$i][content] = import_bundle_block($bundle->attributes) ."<p><div align=\"right\"><a href=\"module.php?mod=import&op=bundle&id=$bundle->bid\">". t("more") ."</a></div></p>"; $block[$i][info] = "$bundle->title bundle"; $i++; @@ -110,7 +110,7 @@ function import_get_feeds($attributes = 0) { $i = 0; while ($feed = db_fetch_object($result)) { $block[$i][subject] = $feed->title; - $block[$i][content] = import_feed_block($feed) ."<p><div align=\"right\"><a href=\"module.php?mod=import&op=feed&id=$feed->fid\">". t("details") ."</a></div></p>"; + $block[$i][content] = import_feed_block($feed) ."<p><div align=\"right\"><a href=\"module.php?mod=import&op=feed&id=$feed->fid\">". t("more") ."</a></div></p>"; $block[$i][info] = "$feed->title feed"; $i++; |