diff options
author | Ian Denhardt <ian@zenhack.net> | 2010-08-03 13:21:11 -0400 |
---|---|---|
committer | Ian Denhardt <ian@zenhack.net> | 2010-08-03 13:21:11 -0400 |
commit | fe5f55cc24d23848644af2ff212292e96545b940 (patch) | |
tree | 939a24932416b6415521b9fa949c6c91fb097c8a /plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php | |
parent | eebc37604a92d29f259ada59c3e655984449ad89 (diff) |
rudementary photo albums. going to /username/photos displays all the images username has attached.
Diffstat (limited to 'plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php')
-rw-r--r-- | plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php b/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php index 928eeccc1..91861818a 100644 --- a/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php +++ b/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php @@ -53,7 +53,7 @@ class GNUsocialPhotosPlugin extends Plugin function onRouterInitialized($m) { - $m->connect('main/photos', array('action' => 'photos')); + $m->connect(':nickname/photos', array('action' => 'photos')); common_log(LOG_INFO, "init'd!"); return true; } |