| 1 |
<?php |
|---|
| 2 |
function module_popup_dialog($link) { |
|---|
| 3 |
$id = $_GET["id"]; |
|---|
| 4 |
$param = db_escape_string($_GET["param"]); |
|---|
| 5 |
|
|---|
| 6 |
if ($id == "explainError") { |
|---|
| 7 |
|
|---|
| 8 |
print "<div id=\"infoBoxTitle\">".__('Notice')."</div>"; |
|---|
| 9 |
print "<div class=\"infoBoxContents\">"; |
|---|
| 10 |
|
|---|
| 11 |
if ($param == 1) { |
|---|
| 12 |
print __("Update daemon is enabled in configuration, but daemon |
|---|
| 13 |
process is not running, which prevents all feeds from updating. Please |
|---|
| 14 |
start the daemon process or contact instance owner."); |
|---|
| 15 |
|
|---|
| 16 |
$stamp = (int)read_stampfile("update_daemon.stamp"); |
|---|
| 17 |
|
|---|
| 18 |
print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); |
|---|
| 19 |
|
|---|
| 20 |
} |
|---|
| 21 |
|
|---|
| 22 |
if ($param == 2) { |
|---|
| 23 |
$msg = check_for_update($link, false); |
|---|
| 24 |
|
|---|
| 25 |
if (!$msg) { |
|---|
| 26 |
print __("You are running the latest version of Tiny Tiny RSS. The |
|---|
| 27 |
fact that you are seeing this dialog is probably a bug."); |
|---|
| 28 |
} else { |
|---|
| 29 |
print $msg; |
|---|
| 30 |
} |
|---|
| 31 |
|
|---|
| 32 |
} |
|---|
| 33 |
|
|---|
| 34 |
if ($param == 3) { |
|---|
| 35 |
print __("TT-RSS has detected that update daemon is taking too long to |
|---|
| 36 |
perform a feed update. This could indicate a problem like crash |
|---|
| 37 |
or a hang. Please check the daemon process or contact instance |
|---|
| 38 |
owner."); |
|---|
| 39 |
|
|---|
| 40 |
$stamp = (int)read_stampfile("update_daemon.stamp"); |
|---|
| 41 |
|
|---|
| 42 |
print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); |
|---|
| 43 |
|
|---|
| 44 |
} |
|---|
| 45 |
|
|---|
| 46 |
print "</div>"; |
|---|
| 47 |
|
|---|
| 48 |
print "<div align='center'>"; |
|---|
| 49 |
|
|---|
| 50 |
print "<input class=\"button\" |
|---|
| 51 |
type=\"submit\" onclick=\"return closeInfoBox()\" |
|---|
| 52 |
value=\"".__('Close this window')."\">"; |
|---|
| 53 |
|
|---|
| 54 |
print "</div>"; |
|---|
| 55 |
|
|---|
| 56 |
return; |
|---|
| 57 |
} |
|---|
| 58 |
|
|---|
| 59 |
if ($id == "quickAddFeed") { |
|---|
| 60 |
|
|---|
| 61 |
print "<div id=\"infoBoxTitle\">".__('Subscribe to Feed')."</div>"; |
|---|
| 62 |
print "<div class=\"infoBoxContents\">"; |
|---|
| 63 |
|
|---|
| 64 |
print "<form id='feed_add_form' onsubmit='return false'>"; |
|---|
| 65 |
|
|---|
| 66 |
print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">"; |
|---|
| 67 |
print "<input type=\"hidden\" name=\"subop\" value=\"add\">"; |
|---|
| 68 |
print "<input type=\"hidden\" name=\"from\" value=\"tt-rss\">"; |
|---|
| 69 |
|
|---|
| 70 |
print "<div class=\"dlgSec\">".__("Feed")."</div>"; |
|---|
| 71 |
print "<div class=\"dlgSecCont\">"; |
|---|
| 72 |
|
|---|
| 73 |
print __("URL:") . " "; |
|---|
| 74 |
|
|---|
| 75 |
print "<input size=\"40\" onblur=\"javascript:enableHotkeys()\" |
|---|
| 76 |
onkeypress=\"return filterCR(event, subscribeToFeed)\" |
|---|
| 77 |
onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\" |
|---|
| 78 |
onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\" |
|---|
| 79 |
onfocus=\"javascript:disableHotkeys()\" name=\"feed_url\"></td></tr>"; |
|---|
| 80 |
|
|---|
| 81 |
print "<br/>"; |
|---|
| 82 |
|
|---|
| 83 |
if (get_pref($link, 'ENABLE_FEED_CATS')) { |
|---|
| 84 |
print __('Place in category:') . " "; |
|---|
| 85 |
print_feed_cat_select($link, "cat_id"); |
|---|
| 86 |
} |
|---|
| 87 |
|
|---|
| 88 |
print "</div>"; |
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
|
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 |
print "<div id='fadd_login_container' style='display:none'> |
|---|
| 103 |
|
|---|
| 104 |
.__("Authentication")."</div> |
|---|
| 105 |
. |
|---|
| 106 |
|
|---|
| 107 |
__('Login:') . " <input name='auth_login' size=\"20\" |
|---|
| 108 |
|
|---|
| 109 |
|
|---|
| 110 |
. |
|---|
| 111 |
__('Password:') . "<input type='password' |
|---|
| 112 |
|
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
|
|---|
| 116 |
; |
|---|
| 117 |
|
|---|
| 118 |
|
|---|
| 119 |
"<div style=\"clear : both\"> |
|---|
| 120 |
|
|---|
| 121 |
|
|---|
| 122 |
. |
|---|
| 123 |
__('This feed requires authentication.')."</div>"; |
|---|
| 124 |
|
|---|
| 125 |
"</form>"; |
|---|
| 126 |
|
|---|
| 127 |
"<div class=\"dlgButtons\"> |
|---|
| 128 |
|
|---|
| 129 |
|
|---|
| 130 |
.__('Subscribe')."\"> |
|---|
| 131 |
|
|---|
| 132 |
|
|---|
| 133 |
.__('Cancel')."\"></div>"; |
|---|
| 134 |
|
|---|
| 135 |
|
|---|
| 136 |
|
|---|
| 137 |
|
|---|
| 138 |
$id == "search") { |
|---|
| 139 |
|
|---|
| 140 |
"<div id=\"infoBoxTitle\">".__('Search')."</div>"; |
|---|
| 141 |
"<div class=\"infoBoxContents\">"; |
|---|
| 142 |
|
|---|
| 143 |
"<form id='search_form' onsubmit='return false'>"; |
|---|
| 144 |
|
|---|
| 145 |
|
|---|
| 146 |
|
|---|
| 147 |
$params = split(":", db_escape_string($_GET["param"])); |
|---|
| 148 |
|
|---|
| 149 |
$active_feed_id = sprintf("%d", $params[0]); |
|---|
| 150 |
$is_cat = $params[1] == "true"; |
|---|
| 151 |
|
|---|
| 152 |
"<div class=\"dlgSec\">".__('Search')."</div>"; |
|---|
| 153 |
|
|---|
| 154 |
"<div class=\"dlgSecCont\">"; |
|---|
| 155 |
|
|---|
| 156 |
"<input name=\"query\" size=\"30\" type=\"search\" |
|---|
| 157 |
|
|---|
| 158 |
|
|---|
| 159 |
|
|---|
| 160 |
; |
|---|
| 161 |
|
|---|
| 162 |
" " . __('match on:')." "; |
|---|
| 163 |
|
|---|
| 164 |
$search_fields = array( |
|---|
| 165 |
"title" => __("Title"), |
|---|
| 166 |
"content" => __("Content"), |
|---|
| 167 |
"both" => __("Title or content")); |
|---|
| 168 |
|
|---|
| 169 |
print_select_hash("match_on", 3, $search_fields); |
|---|
| 170 |
|
|---|
| 171 |
|
|---|
| 172 |
"<br/>".__('Limit search to:')." "; |
|---|
| 173 |
|
|---|
| 174 |
"<select name=\"search_mode\"> |
|---|
| 175 |
.__('All feeds')."</option>"; |
|---|
| 176 |
|
|---|
| 177 |
$feed_title = getFeedTitle($link, $active_feed_id); |
|---|
| 178 |
|
|---|
| 179 |
$is_cat) { |
|---|
| 180 |
$feed_cat_title = getFeedCatTitle($link, $active_feed_id); |
|---|
| 181 |
|
|---|
| 182 |
$feed_cat_title = getCategoryTitle($link, $active_feed_id); |
|---|
| 183 |
|
|---|
| 184 |
|
|---|
| 185 |
$active_feed_id && !$is_cat) { |
|---|
| 186 |
"<option selected value=\"this_feed\">$feed_title</option>"; |
|---|
| 187 |
|
|---|
| 188 |
"<option disabled>".__('This feed')."</option>"; |
|---|
| 189 |
|
|---|
| 190 |
|
|---|
| 191 |
$is_cat) { |
|---|
| 192 |
$cat_preselected = "selected"; |
|---|
| 193 |
|
|---|
| 194 |
|
|---|
| 195 |
get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) { |
|---|
| 196 |
"<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>"; |
|---|
| 197 |
|
|---|
| 198 |
|
|---|
| 199 |
} |
|---|
| 200 |
|
|---|
| 201 |
"</select>"; |
|---|
| 202 |
|
|---|
| 203 |
"</div>"; |
|---|
| 204 |
|
|---|
| 205 |
"</form>"; |
|---|
| 206 |
|
|---|
| 207 |
"<div class=\"dlgButtons\"> |
|---|
| 208 |
|
|---|
| 209 |
|
|---|
| 210 |
|
|---|
| 211 |
.__('Search')."\"> |
|---|
| 212 |
|
|---|
| 213 |
|
|---|
| 214 |
.__('Cancel')."\"></div>"; |
|---|
| 215 |
|
|---|
| 216 |
"</div>"; |
|---|
| 217 |
|
|---|
| 218 |
|
|---|
| 219 |
|
|---|
| 220 |
|
|---|
| 221 |
|
|---|
| 222 |
$id == "quickAddLabel") { |
|---|
| 223 |
"<div id=\"infoBoxTitle\">".__('Create Label')."</div>"; |
|---|
| 224 |
"<div class=\"infoBoxContents\">"; |
|---|
| 225 |
|
|---|
| 226 |
"<form id=\"label_edit_form\" onsubmit='return false'>"; |
|---|
| 227 |
|
|---|
| 228 |
"<input type=\"hidden\" name=\"op\" value=\"pref-labels\">"; |
|---|
| 229 |
"<input type=\"hidden\" name=\"subop\" value=\"add\">"; |
|---|
| 230 |
|
|---|
| 231 |
"<div class=\"dlgSec\">".__("Caption")."</div>"; |
|---|
| 232 |
|
|---|
| 233 |
"<div class=\"dlgSecCont\">"; |
|---|
| 234 |
|
|---|
| 235 |
"<input onkeypress=\"return filterCR(event, addLabel)\" |
|---|
| 236 |
|
|---|
| 237 |
|
|---|
| 238 |
; |
|---|
| 239 |
"</div>"; |
|---|
| 240 |
|
|---|
| 241 |
"<div class=\"dlgSec\">".__("Match SQL")."</div>"; |
|---|
| 242 |
|
|---|
| 243 |
"<div class=\"dlgSecCont\">"; |
|---|
| 244 |
|
|---|
| 245 |
"<textarea onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\" |
|---|
| 246 |
|
|---|
| 247 |
; |
|---|
| 248 |
|
|---|
| 249 |
"<br/>"; |
|---|
| 250 |
|
|---|
| 251 |
print_label_dlg_common_examples(); |
|---|
| 252 |
|
|---|
| 253 |
|
|---|
| 254 |
"</div>"; |
|---|
| 255 |
|
|---|
| 256 |
"</form>"; |
|---|
| 257 |
|
|---|
| 258 |
"<div style=\"display : none\" id=\"label_test_result\"></div>"; |
|---|
| 259 |
|
|---|
| 260 |
"<div class=\"dlgButtons\">"; |
|---|
| 261 |
|
|---|
| 262 |
"<div style='float : left'>"; |
|---|
| 263 |
"<input type=\"submit\" |
|---|
| 264 |
|
|---|
| 265 |
.__('Help')."\"> "; |
|---|
| 266 |
"</div>"; |
|---|
| 267 |
|
|---|
| 268 |
"<input type=\"submit\" onclick=\"labelTest()\" value=\"".__('Test')."\"> |
|---|
| 269 |
; |
|---|
| 270 |
|
|---|
| 271 |
"<input type=\"submit\" |
|---|
| 272 |
|
|---|
| 273 |
|
|---|
| 274 |
|
|---|
| 275 |
.__('Create')."\"> "; |
|---|
| 276 |
|
|---|
| 277 |
"<input class=\"button\" |
|---|
| 278 |
|
|---|
| 279 |
.__('Cancel')."\">"; |
|---|
| 280 |
|
|---|
| 281 |
|
|---|
| 282 |
|
|---|
| 283 |
|
|---|
| 284 |
$id == "quickAddFilter") { |
|---|
| 285 |
|
|---|
| 286 |
$active_feed_id = db_escape_string($_GET["param"]); |
|---|
| 287 |
|
|---|
| 288 |
"<div id=\"infoBoxTitle\">".__('Create Filter')."</div>"; |
|---|
| 289 |
"<div class=\"infoBoxContents\">"; |
|---|
| 290 |
|
|---|
| 291 |
"<form id=\"filter_add_form\" onsubmit='return false'>"; |
|---|
| 292 |
|
|---|
| 293 |
"<input type=\"hidden\" name=\"op\" value=\"pref-filters\">"; |
|---|
| 294 |
"<input type=\"hidden\" name=\"quiet\" value=\"1\">"; |
|---|
| 295 |
"<input type=\"hidden\" name=\"subop\" value=\"add\">"; |
|---|
| 296 |
|
|---|
| 297 |
|
|---|
| 298 |
|
|---|
| 299 |
$result = db_query($link, "SELECT id,description |
|---|
| 300 |
); |
|---|
| 301 |
|
|---|
| 302 |
$filter_types = array(); |
|---|
| 303 |
|
|---|
| 304 |
$line = db_fetch_assoc($result)) { |
|---|
| 305 |
|
|---|
| 306 |
$filter_types[$line["id"]] = __($line["description"]); |
|---|
| 307 |
|
|---|
| 308 |
|
|---|
| 309 |
|
|---|
| 310 |
|
|---|
| 311 |
|
|---|
| 312 |
|
|---|
| 313 |
|
|---|
| 314 |
|
|---|
| 315 |
|
|---|
| 316 |
|
|---|
| 317 |
|
|---|
| 318 |
|
|---|
| 319 |
|
|---|
| 320 |
|
|---|
| 321 |
|
|---|
| 322 |
|
|---|
| 323 |
|
|---|
| 324 |
|
|---|
| 325 |
|
|---|
| 326 |
|
|---|
| 327 |
|
|---|
| 328 |
|
|---|
| 329 |
|
|---|
| 330 |
|
|---|
| 331 |
|
|---|
| 332 |
|
|---|
| 333 |
|
|---|
| 334 |
|
|---|
| 335 |
|
|---|
| 336 |
|
|---|
| 337 |
|
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| 340 |
|
|---|
| 341 |
|
|---|
| 342 |
|
|---|
| 343 |
|
|---|
| 344 |
|
|---|
| 345 |
|
|---|
| 346 |
|
|---|
| 347 |
|
|---|
| 348 |
|
|---|
| 349 |
|
|---|
| 350 |
|
|---|
| 351 |
|
|---|
| 352 |
|
|---|
| 353 |
|
|---|
| 354 |
|
|---|
| 355 |
|
|---|
| 356 |
|
|---|
| 357 |
print "<div class=\"dlgSec\">".__("Match")."</div>"; |
|---|
| 358 |
|
|---|
| 359 |
"<div class=\"dlgSecCont\">"; |
|---|
| 360 |
|
|---|
| 361 |
"<input onkeypress=\"return filterCR(event, createFilter)\" |
|---|
| 362 |
|
|---|
| 363 |
|
|---|
| 364 |
; |
|---|
| 365 |
|
|---|
| 366 |
" " . __("on field") . " "; |
|---|
| 367 |
print_select_hash("filter_type", 1, $filter_types); |
|---|
| 368 |
|
|---|
| 369 |
"<br/>"; |
|---|
| 370 |
|
|---|
| 371 |
__("in") . " "; |
|---|
| 372 |
print_feed_select($link, "feed_id", $active_feed_id); |
|---|
| 373 |
|
|---|
| 374 |
"</div>"; |
|---|
| 375 |
|
|---|
| 376 |
"<div class=\"dlgSec\">".__("Perform Action")."</div>"; |
|---|
| 377 |
|
|---|
| 378 |
"<div class=\"dlgSecCont\">"; |
|---|
| 379 |
|
|---|
| 380 |
"<select name=\"action_id\" |
|---|
| 381 |
; |
|---|
| 382 |
|
|---|
| 383 |
$result = db_query($link, "SELECT id,description FROM ttrss_filter_actions |
|---|
| 384 |
); |
|---|
| 385 |
|
|---|
| 386 |
$line = db_fetch_assoc($result)) { |
|---|
| 387 |
printf("<option value='%d'>%s</option>", $line["id"], __($line["description"])); |
|---|
| 388 |
|
|---|
| 389 |
|
|---|
| 390 |
"</select>"; |
|---|
| 391 |
|
|---|
| 392 |
"<span id=\"filter_dlg_param_box\" style=\"display : none\">"; |
|---|
| 393 |
" " . __("with parameters:") . " "; |
|---|
| 394 |
"<input size=\"20\" |
|---|
| 395 |
|
|---|
| 396 |
; |
|---|
| 397 |
"</span>"; |
|---|
| 398 |
|
|---|
| 399 |
" "; |
|---|
| 400 |
|
|---|
| 401 |
print "</div>"; |
|---|
| 402 |
|
|---|
| 403 |
"<div class=\"dlgSec\">".__("Options")."</div>"; |
|---|
| 404 |
"<div class=\"dlgSecCont\">"; |
|---|
| 405 |
|
|---|
| 406 |
"<div style=\"line-height : 100%\">"; |
|---|
| 407 |
|
|---|
| 408 |
"<input type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\"> |
|---|
| 409 |
.__('Enabled')."</label><br/>"; |
|---|
| 410 |
|
|---|
| 411 |
"<input type=\"checkbox\" name=\"inverse\" id=\"inverse\"> |
|---|
| 412 |
.__('Inverse match')."</label>"; |
|---|
| 413 |
|
|---|
| 414 |
"</div>"; |
|---|
| 415 |
"</div>"; |
|---|
| 416 |
|
|---|
| 417 |
"</form>"; |
|---|
| 418 |
|
|---|
| 419 |
"<div class=\"dlgButtons\">"; |
|---|
| 420 |
|
|---|
| 421 |
"<input type=\"submit\" |
|---|
| 422 |
|
|---|
| 423 |
|
|---|
| 424 |
.__('Create')."\"> "; |
|---|
| 425 |
|
|---|
| 426 |
"<input class=\"button\" |
|---|
| 427 |
|
|---|
| 428 |
.__('Cancel')."\">"; |
|---|
| 429 |
|
|---|
| 430 |
"</div>"; |
|---|
| 431 |
|
|---|
| 432 |
|
|---|
| 433 |
|
|---|
| 434 |
return; |
|---|
| 435 |
|
|---|
| 436 |
|
|---|
| 437 |
$id == "feedUpdateErrors") { |
|---|
| 438 |
|
|---|
| 439 |
"<div id=\"infoBoxTitle\">".__('Update Errors')."</div>"; |
|---|
| 440 |
"<div class=\"infoBoxContents\">"; |
|---|
| 441 |
|
|---|
| 442 |
__("These feeds have not been updated because of errors:"); |
|---|
| 443 |
|
|---|
| 444 |
$result = db_query($link, "SELECT id,title,feed_url,last_error |
|---|
| 445 |
.$_SESSION["uid"]); |
|---|
| 446 |
|
|---|
| 447 |
"<ul class='feedErrorsList'>"; |
|---|
| 448 |
|
|---|
| 449 |
$line = db_fetch_assoc($result)) { |
|---|
| 450 |
"<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " . |
|---|
| 451 |
"<em>" . $line["last_error"] . "</em>"; |
|---|
| 452 |
|
|---|
| 453 |
|
|---|
| 454 |
"</ul>"; |
|---|
| 455 |
|
|---|
| 456 |
"<div align='center'>"; |
|---|
| 457 |
|
|---|
| 458 |
"<input class=\"button\" |
|---|
| 459 |
|
|---|
| 460 |
.__('Close')."\">"; |
|---|
| 461 |
|
|---|
| 462 |
"</div>"; |
|---|
| 463 |
|
|---|
| 464 |
|
|---|
| 465 |
|
|---|
| 466 |
|
|---|
| 467 |
$id == "editArticleTags") { |
|---|
| 468 |
|
|---|
| 469 |
"<div id=\"infoBoxTitle\">".__('Edit Tags')."</div>"; |
|---|
| 470 |
"<div class=\"infoBoxContents\">"; |
|---|
| 471 |
|
|---|
| 472 |
"<form id=\"tag_edit_form\" onsubmit='return false'>"; |
|---|
| 473 |
|
|---|
| 474 |
__("Tags for this article (separated by commas):")."<br>"; |
|---|
| 475 |
|
|---|
| 476 |
$tags = get_article_tags($link, $param); |
|---|
| 477 |
|
|---|
| 478 |
$tags_str = join(", ", $tags); |
|---|
| 479 |
|
|---|
| 480 |
"<table width='100%'>"; |
|---|
| 481 |
|
|---|
| 482 |
"<tr><td colspan='2'><input type=\"hidden\" name=\"id\" value=\"$param\"></td></tr>"; |
|---|
| 483 |
|
|---|
| 484 |
"<tr><td colspan='2'><textarea rows='4' class='iedit' id='tags_str' |
|---|
| 485 |
|
|---|
| 486 |
|
|---|
| 487 |
|
|---|
| 488 |
; |
|---|
| 489 |
|
|---|
| 490 |
|
|---|
| 491 |
|
|---|
| 492 |
|
|---|
| 493 |
|
|---|
| 494 |
|
|---|
| 495 |
|
|---|
| 496 |
|
|---|
| 497 |
|
|---|
| 498 |
|
|---|
| 499 |
|
|---|
| 500 |
|
|---|
| 501 |
|
|---|
| 502 |
|
|---|
| 503 |
|
|---|
| 504 |
|
|---|
| 505 |
|
|---|
| 506 |
|
|---|
| 507 |
|
|---|
| 508 |
|
|---|
| 509 |
|
|---|
| 510 |
|
|---|
| 511 |
print "</table>"; |
|---|
| 512 |
|
|---|
| 513 |
"</form>"; |
|---|
| 514 |
|
|---|
| 515 |
"<div align='right'>"; |
|---|
| 516 |
|
|---|
| 517 |
"<input class=\"button\" |
|---|
| 518 |
|
|---|
| 519 |
.__('Save')."\"> "; |
|---|
| 520 |
|
|---|
| 521 |
"<input class=\"button\" |
|---|
| 522 |
|
|---|
| 523 |
.__('Cancel')."\">"; |
|---|
| 524 |
|
|---|
| 525 |
|
|---|
| 526 |
"</div>"; |
|---|
| 527 |
|
|---|
| 528 |
|
|---|
| 529 |
|
|---|
| 530 |
|
|---|
| 531 |
$id == "printTagCloud") { |
|---|
| 532 |
"<div id=\"infoBoxTitle\">".__('Tag cloud')."</div>"; |
|---|
| 533 |
"<div class=\"infoBoxContents\">"; |
|---|
| 534 |
|
|---|
| 535 |
__("Showing most popular tags ")." (<a |
|---|
| 536 |
.__('browse more')."</a>):<br/>"; |
|---|
| 537 |
|
|---|
| 538 |
"<div class=\"tagCloudContainer\">"; |
|---|
| 539 |
|
|---|
| 540 |
printTagCloud($link); |
|---|
| 541 |
|
|---|
| 542 |
"</div>"; |
|---|
| 543 |
|
|---|
| 544 |
"<div align='center'>"; |
|---|
| 545 |
"<input class=\"button\" |
|---|
| 546 |
|
|---|
| 547 |
.__('Close this window')."\">"; |
|---|
| 548 |
"</div>"; |
|---|
| 549 |
|
|---|
| 550 |
"</div>"; |
|---|
| 551 |
|
|---|
| 552 |
|
|---|
| 553 |
|
|---|
| 554 |
|
|---|
| 555 |
"<div id='infoBoxTitle'>Internal Error</div> |
|---|
| 556 |
|
|---|
| 557 |
|
|---|
| 558 |
; |
|---|
| 559 |
|
|---|
| 560 |
|
|---|
| 561 |
?> |
|---|
| 562 |
|
|---|