From 32d07c3df72ad12dae62f9d5f5d2a3f3c8f4ed7d Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 10 Feb 2013 19:54:43 -0800 Subject: fix profile selector on profile_photo page (unquoted mysql reserved word 'default') --- mod/profile_photo.php | 6 +++--- view/theme/redbasic/css/style.css | 9 +++++++++ view/tpl/profile_photo.tpl | 2 +- view/tpl/smarty3/profile_photo.tpl | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 560cd6b12..5e58ee093 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -257,11 +257,11 @@ function profile_photo_content(&$a) { // go ahead as if we have just uploaded a new photo to crop profile_photo_crop_ui_head($a, $ph); } - - $profiles = q("select id, profile_name as name, is_default as default from profile where uid = %d", +dbg(1); + $profiles = q("select id, profile_name as name, is_default as pdefault from profile where uid = %d", intval(local_user()) ); - +dbg(0); if(! x($a->data,'imagecrop')) { $tpl = get_markup_template('profile_photo.tpl'); diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2dfd85d85..7528f0a52 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -3564,6 +3564,15 @@ nav a:hover { text-decoration: none; outline: none; } + +#profiles-menu li a { + color: #ffffff; +} + +#profiles-menu li a:hover { + color: #000000; +} + nav ul { margin: 0px; padding: 0px 20px; diff --git a/view/tpl/profile_photo.tpl b/view/tpl/profile_photo.tpl index 282e890c8..49323e01c 100644 --- a/view/tpl/profile_photo.tpl +++ b/view/tpl/profile_photo.tpl @@ -12,7 +12,7 @@
diff --git a/view/tpl/smarty3/profile_photo.tpl b/view/tpl/smarty3/profile_photo.tpl index dee2471cf..f13dee26e 100644 --- a/view/tpl/smarty3/profile_photo.tpl +++ b/view/tpl/smarty3/profile_photo.tpl @@ -17,7 +17,7 @@
-- cgit v1.2.3