Skip to content

Commit

Permalink
Bug Fix, to version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Krytic committed Feb 16, 2016
1 parent e51ca43 commit 195d00b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions Upload/admin/modules/wiki/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,13 @@
$table->construct_cell($latest_release['body']);
$table->construct_cell("<a href=\"{$latest_release['html_url']}\">" . $lang->new_release_download . "</a>", array('class' => 'align_center'));
$table->construct_row();
$table->output($lang->wiki_updates_header);
}
else {
$table->construct_cell($lang->wiki_updates, array("class" => "align_center"));
$table->construct_row();
}

$table->construct_cell($lang->wiki_updates, array("class" => "align_center"));
$table->construct_row();
$table->output($lang->wiki_updates_header);
}

$page->output_footer();
Expand Down
6 changes: 3 additions & 3 deletions Upload/inc/languages/english/admin/wiki.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
$l['wiki_docs'] = "Documentation";
$l['wiki_docs_description'] = "How to manage and run the MyBB Wiki on your forum.";
$l['wiki_intro_body'] = "<h1>Welcome to MyBB Wiki!</h1>Thank you for downloading and installing it, it means a lot to me, as it is my first plugin of substance.";
$l['wiki_intro_par1'] = "<h2>About</h2>The Wiki Plugins I have seen are usually outdated and/or buggy. That's why I wanted to build this, a simple, extensible wiki with a solid and reliable backend. MyBB Wiki is my view at a wiki. It is very simple without the bells and whistles. It sports MyCode, Article Protection and a dedicated Admin CP Module, from which you can manage articles posted, add categories and read Documentation.";
$l['wiki_intro_par2'] = "<h2>Updates</h2>For news about updates, you can check out the <a href=\"https://github.com/Krytic/MyBB-Wiki\">GitHub</a> repository or check out the <a href=\"http://community.mybb.com/thread-137015.html\">MyBB Community Thread</a>.<br /><br />You are running version {1}.";
$l['wiki_intro_par1'] = "<h2>About</h2>The Wiki Plugins I have seen are usually outdated and/or buggy. That's why I wanted to build this, a simple, extensible wiki with a solid and reliable backend. MyBB Wiki is my view at a wiki. It is very simple without the bells and whistles. It sports MyCode, Article Protection and a dedicated Admin CP Module, from which you can manage articles posted, add categories and read Documentation.<br /><br />The Wiki is located at thiswebsite.com/wiki.php - where thiswebsite.com is your forum's url.";
$l['wiki_intro_par2'] = "<h2>Updates</h2>For news about updates, you can check out the <a href=\"https://github.com/Krytic/MyBBWiki\">GitHub</a> repository or check out the <a href=\"http://community.mybb.com/thread-137015.html\">MyBB Community Thread</a>.<br /><br />You are running version {1}.";
$l['wiki_docs_2'] = "Extensibility";
$l['wiki_ext_desc'] = "How to extend the Wiki System with your own plugins.";
$l['wiki_ext_head'] = "<h1>Extensibility</h1>";
Expand Down Expand Up @@ -126,7 +126,7 @@
$l['wiki_welcome'] = "<h1>Wiki Admin Control Panel</h1>";
$l['wiki_total_articles'] = "<h2>{1} article{2}</h2>";
$l['wiki_total_cats'] = "<h2>{1} categor{2}</h2>";
$l['wiki_updates'] = "<em>Whilst we work on getting an automatic update scanner working, you can check <a href=\"https://github.com/Krytic/MyBB-Wiki/releases\">here</a>, on GitHub, for new releases.</em>";
$l['wiki_updates'] = "<strong>MyBB Wiki is fully up to date</strong>";
$l['wiki_updates_header'] = "Updates";
$l['wiki_check_for_updates'] = "<h2><a href=\"index.php?module=wiki&action=version_check\">Check for updates</a></h2>";
$l['wiki_version'] = "<h2>Version {1}</h2>";
Expand Down
2 changes: 1 addition & 1 deletion Upload/inc/plugins/wiki/templates/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{$protectedbit}
<tr>
<td class="trow1">
{$wiki['contents']}
{$wiki['content']}
</td>
</tr>
</table>
Expand Down

0 comments on commit 195d00b

Please sign in to comment.