diff --git a/src/IDF/Form/Password.php b/src/IDF/Form/Password.php
index 795a539..98b6949 100644
--- a/src/IDF/Form/Password.php
+++ b/src/IDF/Form/Password.php
@@ -86,7 +86,7 @@ class IDF_Form_Password extends Pluf_Form
$return_url = Pluf_HTTP_URL_urlForView('IDF_Views::passwordRecoveryInputCode');
$tmpl = new Pluf_Template('idf/user/passrecovery-email.txt');
$cr = new Pluf_Crypt(md5(Pluf::f('secret_key')));
- $code = trim($cr->encrypt($user->email.':'.$user->id.':'.time()),
+ $code = trim($cr->encrypt($user->email.':'.$user->id.':'.time().':primary'),
'~');
$code = substr(md5(Pluf::f('secret_key').$code), 0, 2).$code;
$url = Pluf::f('url_base').Pluf_HTTP_URL_urlForView('IDF_Views::passwordRecovery', array($code), array(), false);
diff --git a/src/IDF/Form/UserChangeEmail.php b/src/IDF/Form/UserChangeEmail.php
index aa611c0..308bd6e 100644
--- a/src/IDF/Form/UserChangeEmail.php
+++ b/src/IDF/Form/UserChangeEmail.php
@@ -63,7 +63,7 @@ class IDF_Form_UserChangeEmail extends Pluf_Form
throw new Pluf_Form_Invalid(__('The validation key is not valid. Please copy/paste it from your confirmation email.'));
}
$cr = new Pluf_Crypt(md5(Pluf::f('secret_key')));
- return explode(':', $cr->decrypt($encrypted), 3);
+ return explode(':', $cr->decrypt($encrypted), 4);
}
diff --git a/src/IDF/Template/IssueComment.php b/src/IDF/Template/IssueComment.php
index 280cf2b..a3f23e5 100644
--- a/src/IDF/Template/IssueComment.php
+++ b/src/IDF/Template/IssueComment.php
@@ -34,6 +34,11 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag
function start($text, $request, $echo=true, $wordwrap=true, $esc=true, $autolink=true, $nl2br=false)
{
+ // PHP sets the backtrack limit quite low, so some regexes may
+ // fail unexpectedly on large inputs or weird cornercases (see issue 618)
+ $pcre_backtrack_limit = ini_get('pcre.backtrack_limit');
+ ini_set('pcre.backtrack_limit', 10000000);
+
$this->project = $request->project;
$this->request = $request;
$this->scm = IDF_Scm::get($request->project);
@@ -67,6 +72,8 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag
} else {
return $text;
}
+
+ ini_set('pcre.backtrack_limit', $pcre_backtrack_limit);
}
/**
@@ -234,7 +241,7 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag
public function linkIssue($issue, $title, $anchor='')
{
$ic = (in_array($issue->status, $this->project->getTagIdsByStatus('closed'))) ? 'issue-c' : 'issue-o';
- return 'project->shortname, $issue->id)).$anchor.'" class="'.$ic.'" title="'.Pluf_esc($issue->summary).'">'.Pluf_esc($title).'';
}
@@ -248,7 +255,7 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag
public function linkReview($review, $title, $anchor='')
{
$ic = (in_array($review->status, $this->project->getTagIdsByStatus('closed'))) ? 'issue-c' : 'issue-o';
- return 'project->shortname, $review->id)).$anchor.'" class="'.$ic.'" title="'.Pluf_esc($review->summary).'">'.Pluf_esc($title).'';
}
}
diff --git a/src/IDF/Template/Markdown.php b/src/IDF/Template/Markdown.php
index 2489da3..9b33a06 100644
--- a/src/IDF/Template/Markdown.php
+++ b/src/IDF/Template/Markdown.php
@@ -34,6 +34,11 @@ class IDF_Template_Markdown extends Pluf_Template_Tag
function start($text, $request)
{
+ // PHP sets the backtrack limit quite low, so some regexes may
+ // fail unexpectedly on large inputs or weird cornercases (see issue 618)
+ $pcre_backtrack_limit = ini_get('pcre.backtrack_limit');
+ ini_set('pcre.backtrack_limit', 10000000);
+
$this->project = $request->project;
$this->request = $request;
// Replace like in the issue text
@@ -43,7 +48,7 @@ class IDF_Template_Markdown extends Pluf_Template_Tag
// the content of the file into the wki page
if ($this->request->rights['hasSourceAccess']) {
$text = preg_replace_callback('#\[\[\[([^\,]+)(?:, ([^/]+))?\]\]\]#im',
- array($this, 'callbackEmbeddedDoc'),
+ array($this, 'callbackEmbeddedDoc'),
$text);
}
// Replace [Page]([[PageName]]) with corresponding link to the page, with link text being Page.
@@ -56,6 +61,8 @@ class IDF_Template_Markdown extends Pluf_Template_Tag
$text);
$filter = new IDF_Template_MarkdownPrefilter();
echo $filter->go(Pluf_Text_MarkDown_parse($text));
+
+ ini_set('pcre.backtrack_limit', $pcre_backtrack_limit);
}
function callbackWikiPageNoName($m)
@@ -66,7 +73,7 @@ class IDF_Template_Markdown extends Pluf_Template_Tag
function callbackWikiPage($m)
{
- $sql = new Pluf_SQL('project=%s AND title=%s',
+ $sql = new Pluf_SQL('project=%s AND title=%s',
array($this->project->id, $m[2]));
$pages = Pluf::factory('IDF_WikiPage')->getList(array('filter'=>$sql->gen()));
if ($pages->count() != 1 and $this->request->rights['hasWikiAccess']
@@ -78,7 +85,7 @@ class IDF_Template_Markdown extends Pluf_Template_Tag
}
return ''.$m[1].'';
}
-
+
function callbackEmbeddedDoc($m)
{
$scm = IDF_Scm::get($this->request->project);
@@ -94,7 +101,7 @@ class IDF_Template_Markdown extends Pluf_Template_Tag
return $m[0];
}
$info = pathinfo($m[1]);
- $fileinfo = array($res->headers['Content-Type'], $m[1],
+ $fileinfo = array($res->headers['Content-Type'], $m[1],
isset($info['extension']) ? $info['extension'] : 'bin');
if (!IDF_FileUtil::isText($fileinfo)) {
return $m[0];
diff --git a/www/media/idf/js/wiki-toc.js b/www/media/idf/js/wiki-toc.js
index 940e211..8b59f35 100644
--- a/www/media/idf/js/wiki-toc.js
+++ b/www/media/idf/js/wiki-toc.js
@@ -5,7 +5,7 @@ $(document).ready(function() {
.addClass("wiki-" + this.tagName.toLowerCase())
.appendTo('#wiki-toc-content');
});
- if ($('#wiki-toc-content').size() < 2)
+ if ($('#wiki-toc-content *').size() < 2)
$('#wiki-toc').hide();
});