mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 16:33:00 +00:00
fixed fatal login bug
This commit is contained in:
parent
a0d4fecc1e
commit
173987512e
2 changed files with 12 additions and 2 deletions
7
core.php
7
core.php
|
@ -256,7 +256,7 @@ class page_renderer
|
||||||
|
|
||||||
if($isloggedin)
|
if($isloggedin)
|
||||||
{
|
{
|
||||||
$result .= "\t\t\tLogged in as " . render_username($user) . ". ";
|
$result .= "\t\t\tLogged in as " . self::render_username($user) . ". ";
|
||||||
$result .= "<a href='index.php?action=logout'>Logout</a>. | \n";
|
$result .= "<a href='index.php?action=logout'>Logout</a>. | \n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -355,6 +355,11 @@ class Slimdown {
|
||||||
'/\r\n/' => "\n", // new line normalisation
|
'/\r\n/' => "\n", // new line normalisation
|
||||||
'/(#+)(.*)/' => 'self::header', // headers
|
'/(#+)(.*)/' => 'self::header', // headers
|
||||||
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
||||||
|
|
||||||
|
// todo test these
|
||||||
|
'/!\[(.*)\]\((.*)\)/' => '<img src="\2" alt="\1" />', // basic images
|
||||||
|
// todo end
|
||||||
|
|
||||||
'/(_)(.*?)\1/' => '<em>\2</em>', // emphasis
|
'/(_)(.*?)\1/' => '<em>\2</em>', // emphasis
|
||||||
'/\[\[([a-zA-Z0-9\_\- ]+)\|([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\2</a>', //internal links with display text
|
'/\[\[([a-zA-Z0-9\_\- ]+)\|([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\2</a>', //internal links with display text
|
||||||
'/\[\[([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\1</a>', //internal links
|
'/\[\[([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\1</a>', //internal links
|
||||||
|
|
|
@ -410,7 +410,7 @@ class page_renderer
|
||||||
|
|
||||||
if($isloggedin)
|
if($isloggedin)
|
||||||
{
|
{
|
||||||
$result .= "\t\t\tLogged in as " . render_username($user) . ". ";
|
$result .= "\t\t\tLogged in as " . self::render_username($user) . ". ";
|
||||||
$result .= "<a href='index.php?action=logout'>Logout</a>. | \n";
|
$result .= "<a href='index.php?action=logout'>Logout</a>. | \n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -509,6 +509,11 @@ class Slimdown {
|
||||||
'/\r\n/' => "\n", // new line normalisation
|
'/\r\n/' => "\n", // new line normalisation
|
||||||
'/(#+)(.*)/' => 'self::header', // headers
|
'/(#+)(.*)/' => 'self::header', // headers
|
||||||
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
||||||
|
|
||||||
|
// todo test these
|
||||||
|
'/!\[(.*)\]\((.*)\)/' => '<img src="\2" alt="\1" />', // basic images
|
||||||
|
// todo end
|
||||||
|
|
||||||
'/(_)(.*?)\1/' => '<em>\2</em>', // emphasis
|
'/(_)(.*?)\1/' => '<em>\2</em>', // emphasis
|
||||||
'/\[\[([a-zA-Z0-9\_\- ]+)\|([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\2</a>', //internal links with display text
|
'/\[\[([a-zA-Z0-9\_\- ]+)\|([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\2</a>', //internal links with display text
|
||||||
'/\[\[([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\1</a>', //internal links
|
'/\[\[([a-zA-Z0-9\_\- ]+)\]\]/' => '<a href=\'index.php?page=\1\'>\1</a>', //internal links
|
||||||
|
|
Loading…
Reference in a new issue