summaryrefslogtreecommitdiffstats
path: root/admin
Commit message (Collapse)AuthorAgeFilesLines
* Fix 'foo all catalogs' via the web interfacePaul Arthur2013-05-131-10/+9
| | | | | | | Evidently Catalog::get_catalog_ids() wasn't quite as unused as I thought it was. Fixes GH #18
* Make remote catalogs actually workPaul Arthur2013-03-281-1/+1
|
* duplicates.php: drop unnecessary Dba::escape()Paul Arthur2013-02-041-1/+1
| | | | This value is never passed to the database or output in any way.
* Rename Ampache_Mail to MailerPaul Arthur2013-01-291-1/+1
|
* Cosmetics: s/Itterate/Iterate/Paul Arthur2013-01-281-1/+1
|
* Cosmetics: death to tabsPaul Arthur2013-01-2611-1043/+1043
| | | | | The refactoring I've been doing has reminded me of my strong preference for spaces, and I feel inclined to impose my will on the tree.
* Move show_box_{top,bottom}() from ui.lib.php to UIPaul Arthur2013-01-262-6/+6
|
* Move show_{footer,header}() from ui.lib.php to UIPaul Arthur2013-01-2611-22/+22
|
* Move access_denied() from lib/ui.lib.php to UIPaul Arthur2013-01-2611-24/+24
|
* Move Catalog::get_disabled() to SongPaul Arthur2013-01-261-1/+1
|
* Move Catalog::optimize_tables() to DbaPaul Arthur2013-01-261-2/+2
|
* Rename shoutBox to ShoutboxPaul Arthur2013-01-251-4/+4
|
* Move clean functions into their respective classesPaul Arthur2013-01-251-2/+2
| | | | Uniformly name them gc()
* Move duplicate searching from Catalog to SongPaul Arthur2013-01-251-1/+1
| | | | | Catalog::get_duplicate_songs() -> Song::find_duplicates() Catalog::get_duplicate_info() -> Song::get_duplicate_info()
* Move Catalog::clear_stats() to Stats::clear()Paul Arthur2013-01-251-4/+3
|
* Consistently use _ in two-word class namesPaul Arthur2013-01-251-1/+1
|
* require and require_once aren't functionsPaul Arthur2013-01-252-7/+7
| | | | | Since the parentheses are optional, we leave them off to remind ourselve that PHP be crazy, yo.
* Consistently use require_once to load init.phpPaul Arthur2013-01-253-3/+3
|
* Cosmetics: clean up heads in admin/Paul Arthur2013-01-2511-77/+11
|
* Cosmetics: Fix capitalisationPaul Arthur2012-10-181-1/+1
|
* FS#248 - Sending Mail with quotesPaul Arthur2012-09-201-2/+2
| | | | | | Don't run scrub_in on the subject and body; it's not touching the database or being output back to the browser, and we send plain text email. Anything malicious that can be done is a phpmailer bug.
* Clean up the ACL UI a bitPaul Arthur2012-05-011-57/+15
| | | | Make it more consistent and remove outdated references to RPC keys.
* Switch from ngettext() to T_ngettext()Paul Arthur2012-04-121-2/+2
|
* Switch from _() to T_()Paul Arthur2012-04-128-67/+67
| | | | | | Even if we move away from php-gettext in the future, it's easy to write a quick T_() as a simple wrapper; it's not so easy to rewrite PHP to allow redeclaration of a function.
* Refactor similar init code into new init-tiny.phpPaul Arthur2012-03-131-3/+1
| | | | | | | | | Several places were doing operations that were practically the same (loading core libraries and setting some variables), with varying levels of success in remembering to do the right things in the right order. Making a separate minimal init.php that doesn't worry about some of the sanity checks and session bumpf makes this cleaner and easier to maintain.
* Add remote_username/password to Catalog Edit pageKarl Vollmer2011-11-231-1/+1
|
* Inverted, remote not localKarl Vollmer2011-11-231-1/+1
|
* Fix DB updates so catalog remote_username and remote_password are added ↵Karl Vollmer2011-11-231-3/+2
| | | | correctly, also fix catalog creation so they are stored in the database
* Update Horde_Browser to latest.Paul Arthur2011-10-271-1/+1
|
* Added class names to generic box names.mywindow2011-09-192-3/+3
|
* Fix display of duplicate searchAdam Grissom2011-04-181-1/+2
|
* Clean up some PHPDoc crapPaul Arthur2011-04-0411-66/+11
| | | | | | Remove misleading, unvetted, or in some cases just plain wrong data. Packages and categories weren't being used correctly. They still aren't.
* Catalog workPaul Arthur2011-04-021-5/+7
| | | | | | Reduce the frequency of some expensive database operations when processing multiple catalogs. More debugging output. Remove unnecessary or unused parameters from function calls.
* header comment modified for phpdocmomo-i2011-02-0311-11/+11
|
* header comment for phpdocmomo-i2011-02-0311-198/+319
|
* Refactor mail handling a bit and make registration use the same method as the Paul 'flowerysong' Arthur2010-10-091-31/+19
| | | | other places that send mail.
* Plugin work. Plugins are now pluggable: no plugin-specific code in the main ↵Paul 'flowerysong' Arthur2010-06-221-1/+13
| | | | | | | Ampache code. Plugins are now updatable, if configuration changes are needed for a new version.
* Clean up general.lib.php and ui.lib.php: remove unused functions, group relatedPaul 'flowerysong' Arthur2010-06-131-21/+8
| | | | functions, simplify implementation of some functions.
* Change Browse from static to instantiable. Among other things, fixes FS#13;Paul 'flowerysong' Arthur2010-06-104-20/+32
| | | | | probably also breaks things. Most things appear to still work, but I may have missed some cases.
* Cleanup and rationalisation of authentication related code. Among other things,Paul 'flowerysong' Arthur2010-05-291-4/+4
| | | | fixes FS#99.
* Art work. Rationalise DB schema, support multiple thumbnail sizes and Paul 'flowerysong' Arthur2010-05-051-1/+1
| | | | | caching thereof, call Catalog->gather_art instead of Catalog->gather_album_art, unbreak (hopefully) gather_musicbrainz.
* Cosmetics: remove trailing whitespacePaul 'flowerysong' Arthur2010-03-1411-466/+466
|
* Add vim modelines to all php files (Thx ascheel)Karl 'vollmerk' Vollmer2010-03-1411-0/+11
|
* sync from 3.5.x and fix display issue on playlist viewKarl 'vollmerk' Vollmer2009-12-203-8/+31
|
* sync fix for doing something with collected m3u files during catalog creationKarl 'vollmerk' Vollmer2009-11-141-14/+12
|
* Add Hint for translatorsmomo-i2009-05-191-0/+1
|
* Update phpmailer version momo-i2009-05-181-3/+3
|
* fix sprintf typomomo-i2009-05-061-1/+1
|
* fix nexturl typo and more translatemomo-i2009-05-064-10/+10
|
* Update translate stringsmomo-i2009-05-068-96/+96
| | | | | Change indent tab from blank Fix show_confirmation web_path