Author: pebender
Date: Mon Oct 13 12:26:11 2008
New Revision: 3833
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
Log:
- Fixed a bug in MiniMyth::url_file_put that caused MythTV themecache and
codecs saving to local boot device to fail.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Mon Oct 13
12:26:11 2008
@@ -1,7 +1,7 @@
MiniMyth Changelog
--------------------------------------------------------------------------------
-Changes since 58 (2008-10-12):
+Changes since 58 (2008-10-13):
Current MythTV versions
MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch
svn 16082,
@@ -79,6 +79,8 @@
missing when when DVD ripping support was enabled.
- Modified MiniMyth::application_path so that it removed trailing new
line.
+ - Fixed a bug in MiniMyth::url_file_put that caused MythTV themecache
and
+ codecs saving to local boot device to fail.
Modified build system
- Added mm_GRAPHICS for controlling which graphics drivers are
included.
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums (original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums Mon Oct 13
12:26:11 2008
@@ -1 +1 @@
-73ae0c2d299752ceb61105d061afde1d download/MiniMyth.pm
+3b0fdfd1093ca66f53a5f0d550196888 download/MiniMyth.pm
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
(original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm Mon Oct
13 12:26:11 2008
@@ -1444,7 +1444,7 @@
(-d $remote_dir) or return $result;
unlink $remote_file;
- if (! -f $remote_file)
+ if (! -f $local_file)
{
$self->message_log('err', qq(MiniMyth::url_file_put: local
file ') . $local_file . qq(' not found.));
return $result;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---