diff options
author | deva <deva> | 2010-01-28 14:11:14 +0000 |
---|---|---|
committer | deva <deva> | 2010-01-28 14:11:14 +0000 |
commit | 10267210927846619e39e76ac173d9295851b948 (patch) | |
tree | bf85343aa358b25b68ce953492689cbcebb37259 /utils/modules/discography.php | |
parent | 55b8d42b6422f24196078c8adb6a2a59861d0ef4 (diff) |
Fix broken module loading in admin. New module parameter system.
Diffstat (limited to 'utils/modules/discography.php')
-rw-r--r-- | utils/modules/discography.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/modules/discography.php b/utils/modules/discography.php index fe5a353..4781eda 100644 --- a/utils/modules/discography.php +++ b/utils/modules/discography.php @@ -213,11 +213,14 @@ class Discography { { global $GLOBALS; + $str = "<div class=\"discography\">\n"; $lyrics = $GLOBALS["lyrics"]; $number = $GLOBALS["track"]; + //foreach($params as $param => $value) {} + if($lyrics && $number) { if($this->discs) { foreach($this->discs as $disc) { |