diff options
author | Jasmin Jessich <jasmin@anw.at> | 2017-05-25 20:44:06 +0200 |
---|---|---|
committer | Jasmin Jessich <jasmin@anw.at> | 2017-05-25 20:44:06 +0200 |
commit | 3e0774c0968dc38178cadb41558302c8a888b875 (patch) | |
tree | 3bd4cadc1b0f5127b54112b153b0a579b4195436 /pages/searchresults.ecpp | |
parent | 6c7dc2d68ffd8a2097531e3acfee588a27710586 (diff) | |
download | vdr-plugin-live-3e0774c0968dc38178cadb41558302c8a888b875.tar.gz vdr-plugin-live-3e0774c0968dc38178cadb41558302c8a888b875.tar.bz2 |
Fixed lock order in several files
- It is still not finished, but most of the locks should be in the right
order now.
I am still waiting for a VDR patch to check the lock order dynamically.
Diffstat (limited to 'pages/searchresults.ecpp')
-rw-r--r-- | pages/searchresults.ecpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pages/searchresults.ecpp b/pages/searchresults.ecpp index 8970f37..6e554ac 100644 --- a/pages/searchresults.ecpp +++ b/pages/searchresults.ecpp @@ -51,9 +51,9 @@ bool logged_in(false); <& pageelems.logo &> <& menu active=("searchepg") &> <div class="inhalt"> -% if (results.size() == 0) { - <$ tr("No search results") $> -% } +% if (results.size() == 0) { + <$ tr("No search results") $> +% } <table class="listing" cellspacing="0" cellpadding="0"> <%cpp> string current_day = ""; @@ -63,9 +63,9 @@ bool logged_in(false); #endif for (SearchResults::iterator result = results.begin(); result != results.end(); ++result) { #if VDRVERSNUM >= 20301 - cChannel* channel = (cChannel *)Channels->GetByChannelID(result->Channel()); + cChannel* channel = (cChannel *)Channels->GetByChannelID(result->Channel()); #else - cChannel* channel = Channels.GetByChannelID(result->Channel()); + cChannel* channel = Channels.GetByChannelID(result->Channel()); #endif if (!channel) continue; string channelname = channel->Name(); @@ -99,7 +99,7 @@ bool logged_in(false); </tr> % current_day = day; % } - <tr> + <tr> <td class="action leftcol <? bottom ? "bottomrow"?>"><& pageelems.event_timer epgid=(epgid) &></td> <td class="topaligned <? bottom ? "bottomrow"?>"><div class="withmargin"><a href="schedule.html?channel=<$ channelnr $>"><$ channelname $></a></div></td> <td class="topaligned <? bottom ? "bottomrow"?>"><div class="withmargin nowrap"><$ start $> - <$ end $></div></td> |