Skip to content

Commit

Permalink
Merge branch 'master' into ceton
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Apr 1, 2012
2 parents 312968d + 8bbf302 commit 6e72a9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mythplugins/mytharchive/mytharchive/main.cpp
Expand Up @@ -329,7 +329,7 @@ int mythplugin_init(const char *libversion)
"Couldn't upgrade database to new schema, exiting.");
return -1;
}
gCoreContext->ActivateSettingsCache(false);
gCoreContext->ActivateSettingsCache(true);

ArchiveSettings settings;
settings.Load();
Expand Down
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/httpstatus.cpp
Expand Up @@ -964,7 +964,7 @@ int HttpStatus::PrintScheduled( QTextStream &os, QDomElement scheduled )

if ( airDate.isValid())
os << "Orig. Airdate: "
<< airDate.toString(longdateformat + " " +timeformat)
<< airDate.toString(longdateformat)
<< "<br /><br />";

os << sDesc << "<br /><br />"
Expand Down
4 changes: 1 addition & 3 deletions mythtv/programs/mythbackend/services/dvr.cpp
Expand Up @@ -444,9 +444,6 @@ int Dvr::AddRecordSchedule ( int nChanId,
RecordingInfo *info = new RecordingInfo(nChanId, dStartTime, false);
RecordingRule *rule = info->GetRecordingRule();

delete info;
info = NULL;

if (sType.isEmpty())
sType = "single";

Expand All @@ -459,6 +456,7 @@ int Dvr::AddRecordSchedule ( int nChanId,
if (sDupIn.isEmpty())
sDupIn = "all";

rule->m_title = info->GetTitle();
rule->m_type = recTypeFromString(sType);
rule->m_searchType = searchTypeFromString(sSearchType);
rule->m_dupMethod = dupMethodFromString(sDupMethod);
Expand Down

0 comments on commit 6e72a9b

Please sign in to comment.