summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php
index 2706ebda5..59f0aa10f 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -431,6 +431,23 @@ function common_default_avatar($size) {
}
function common_local_url($action, $args=NULL) {
+ global $config;
+ if ($config['site']['fancy']) {
+ return common_fancy_url($action, $args);
+ } else {
+ return common_simple_url($action, $args);
+ }
+}
+
+function common_fancy_url($action, $args=NULL) {
+ switch (strtolower($action)) {
+ default:
+ return common_simple_url($action, $args);
+ }
+}
+
+function common_simple_url($action, $args=NULL) {
+ global $config;
/* XXX: pretty URLs */
$extra = '';
if ($args) {