summaryrefslogtreecommitdiffstats
path: root/lib/class
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-25 20:30:23 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-25 20:30:36 -0500
commitd14b5215ebd23097f504607c1db3f653c58cf3e9 (patch)
treef25fc0fff0d69ffaac22226decef54db45781c2c /lib/class
parentc864d180cb1d11bd40d237284e43badbb2429e89 (diff)
downloadampache-d14b5215ebd23097f504607c1db3f653c58cf3e9.tar.gz
ampache-d14b5215ebd23097f504607c1db3f653c58cf3e9.tar.bz2
ampache-d14b5215ebd23097f504607c1db3f653c58cf3e9.zip
Cosmetics: s/incase/in case/
Diffstat (limited to 'lib/class')
-rw-r--r--lib/class/art.class.php4
-rw-r--r--lib/class/catalog.class.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/class/art.class.php b/lib/class/art.class.php
index af1c0bca..c18c9313 100644
--- a/lib/class/art.class.php
+++ b/lib/class/art.class.php
@@ -492,7 +492,7 @@ class Art extends database_object {
return $id3['asf']['extended_content_description_object']['content_descriptors']['13']['data'];
}
elseif (isset($id3['id3v2']['APIC'])) {
- // Foreach incase they have more then one
+ // Foreach in case they have more then one
foreach ($id3['id3v2']['APIC'] as $image) {
return $image['data'];
}
@@ -1093,7 +1093,7 @@ class Art extends database_object {
}
if (isset($id3['id3v2']['APIC'])) {
- // Foreach incase they have more then one
+ // Foreach in case they have more then one
foreach ($id3['id3v2']['APIC'] as $image) {
$data[] = array(
'song' => $song->file,
diff --git a/lib/class/catalog.class.php b/lib/class/catalog.class.php
index 18d459c1..fee53717 100644
--- a/lib/class/catalog.class.php
+++ b/lib/class/catalog.class.php
@@ -259,7 +259,7 @@ class Catalog extends database_object {
*/
public static function create($data) {
- // Clean up the path just incase
+ // Clean up the path just in case
$data['path'] = rtrim(rtrim(trim($data['path']),'/'),'\\');
$path = Dba::escape($data['path']);