aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie
diff options
context:
space:
mode:
Diffstat (limited to 'src/phorkie')
-rw-r--r--src/phorkie/HtmlHelper.php5
-rw-r--r--src/phorkie/Repository.php2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/phorkie/HtmlHelper.php b/src/phorkie/HtmlHelper.php
index 945c7ea..efde714 100644
--- a/src/phorkie/HtmlHelper.php
+++ b/src/phorkie/HtmlHelper.php
@@ -39,6 +39,11 @@ class HtmlHelper
}
return $html;
}
+
+ public function fullUrl($path = '')
+ {
+ return Tools::fullUrl($path);
+ }
}
?>
diff --git a/src/phorkie/Repository.php b/src/phorkie/Repository.php
index 2683ad0..9de2e1a 100644
--- a/src/phorkie/Repository.php
+++ b/src/phorkie/Repository.php
@@ -331,6 +331,8 @@ class Repository
$link = $this->id . '/delete';
} else if ($type == 'delete-confirm') {
$link = $this->id . '/delete/confirm';
+ } else if ($type == 'remotefork') {
+ return 'web+fork:' . $this->getLink('display', null, true);
} else if ($type == 'revision') {
$link = $this->id . '/rev/' . $option;
} else if ($type == 'linkback') {