diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-03-28 20:45:39 +0200 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-03-28 20:45:39 +0200 |
commit | 1a9bbac0bede3daf3bca9260397e1ad2214be1f7 (patch) | |
tree | da3c12cde7a6959491a900b4b810988c98eeb2bd /view/theme/diabook/theme.php | |
parent | e894775a39920edc0e438364c818357ab809bace (diff) | |
download | volse-hubzilla-1a9bbac0bede3daf3bca9260397e1ad2214be1f7.tar.gz volse-hubzilla-1a9bbac0bede3daf3bca9260397e1ad2214be1f7.tar.bz2 volse-hubzilla-1a9bbac0bede3daf3bca9260397e1ad2214be1f7.zip |
bugfix in diabook
Diffstat (limited to 'view/theme/diabook/theme.php')
-rwxr-xr-x | view/theme/diabook/theme.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php index a3f0ca0d4..076223a48 100755 --- a/view/theme/diabook/theme.php +++ b/view/theme/diabook/theme.php @@ -243,17 +243,18 @@ if ($a->argv[0] === "network" && local_user()){ //right_aside at profile pages -if ($a->argv[0] === "profile"){ +if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){ if($ccCookie != "8") { // COMMUNITY diabook_community_info(); // CUSTOM CSS $cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook/style-profile.css"; + + } } - // custom css if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile); |