diff options
author | Sashi20 | 2020-07-28 16:01:05 +0530 |
---|---|---|
committer | Sashi20 | 2020-07-28 16:01:05 +0530 |
commit | 5486766ba6dba69419eb1bd4a38c54a06e1b8fd8 (patch) | |
tree | 87fbabe06cf6a7b319e9d7d044bf37659833d21f /fellowship_testimonials.module | |
parent | e7b03d6e0ccb2b671ad9d22d9419cff09e99e570 (diff) | |
download | fellowship_testimonials-5486766ba6dba69419eb1bd4a38c54a06e1b8fd8.tar.gz fellowship_testimonials-5486766ba6dba69419eb1bd4a38c54a06e1b8fd8.tar.bz2 fellowship_testimonials-5486766ba6dba69419eb1bd4a38c54a06e1b8fd8.zip |
Remove pager in text testimonials, adjust video height and width
Diffstat (limited to 'fellowship_testimonials.module')
-rwxr-xr-x | fellowship_testimonials.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fellowship_testimonials.module b/fellowship_testimonials.module index 8b73e9c..081586c 100755 --- a/fellowship_testimonials.module +++ b/fellowship_testimonials.module @@ -109,8 +109,8 @@ $query->fields('fellowship_testimonials'); $query->condition('testimonial_type', 'T'); $query->orderBy('year', 'DESC'); - $result = $query->extend('PagerDefault')->limit(3)->execute(); - + //$result = $query->extend('PagerDefault')->limit(3)->execute(); + $result = $query->execute(); $page_content .= "<div id='fellowship_testimonials-wrapper'>"; while($row = $result->fetchObject()) { $speakerquery = db_select('fellows'); |