summaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Expand)AuthorAgeFilesLines
* Bump getID3 versionPaul Arthur2013-05-1314-352/+549
* Treat Snoopy the same as other external modulesPaul Arthur2013-03-297-135/+792
* Don't store plaintext passwordsPaul Arthur2013-03-281-2/+1
* Make remote catalogs actually workPaul Arthur2013-03-281-75/+73
* Clean up AmpacheApi modulePaul Arthur2013-03-281-180/+191
* getID3: Import bugfix from forumPaul Arthur2013-02-111-4/+32
* Yank out the Flash player by the roots.Paul Arthur2013-01-286-133/+0
* Cosmetics: death to tabsPaul Arthur2013-01-2613-2016/+2017
* Cosmetics: clean up remaining headsPaul Arthur2013-01-2515-112/+40
* Remove unused mp3tunes classPaul Arthur2013-01-251-490/+0
* Remove unused jamendoSearch classPaul Arthur2013-01-251-78/-36337/+23434
* Forgot comment end...momo-i2011-02-031-0/+1
* Modified header comment for phpdocmomo-i2011-02-0317-351/+695
* Don't unset the UFID values in id3v2 tags.Paul Arthur2011-01-041-1/+0
$GLOBALS['user']->has_access(100)) { access_denied(); break; } // Tmp just to make this work header("Location: " . Config::get('web_path') . "/stream.php?action=democratic"); exit; break; case 'manage_playlists': if (!$GLOBALS['user']->has_access('75')) { access_denied(); break; } // Get all of the non-user playlists $playlists = Democratic::get_playlists(); require_once Config::get('prefix') . '/templates/show_manage_democratic.inc.php'; break; case 'update_playlist': /* Only Admins Here */ if (!$GLOBALS['user']->has_access(100)) { access_denied(); break; } $tmp_playlist = new tmpPlaylist($_REQUEST['tmp_playlist_id']); $tmp_playlist->update_playlist($_REQUEST['playlist_id']); case 'show_playlist': default: $democratic = Democratic::get_current_playlist(); $objects = $democratic->get_items(); require_once Config::get('prefix') . '/templates/show_democratic.inc.php'; break; } // end switch on action show_footer(); ?>