[Mahara-contributors] [Bug 1774309] Re: Getting an Undefined index: QUERY_STRING when logging in

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/17.04
   Status: Fix Committed => Fix Released

** Changed in: mahara/17.10
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1774309

Title:
  Getting an Undefined index: QUERY_STRING when logging in

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Released
Status in Mahara 17.10 series:
  Fix Released
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  If trying to access a page requiring login the system remembers the
  path (QUERY_STRING) you were trying to access. So when login is
  successful it will redirect to that page.

  But if you login from the homepage there can be no QUERY_STRING to
  redirect to

  Noticed when doing behat tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1774309/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1767867] Re: 'Search results for' link in My Tags page not working correctly

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/17.04
   Status: Fix Committed => Fix Released

** Changed in: mahara/17.10
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1767867

Title:
  'Search results for' link in My Tags page not working correctly

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Released
Status in Mahara 17.10 series:
  Fix Released
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  It sometimes gets confused and tries to create a URL without the ?
  char but only the & char

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1767867/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1773864] Re: ExternalFeed block cron task fails when SSL cert is not valid for a feed

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/17.04
   Status: Fix Committed => Fix Released

** Changed in: mahara/17.10
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1773864

Title:
  ExternalFeed block cron task fails when SSL cert is not valid for a
  feed

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Released
Status in Mahara 17.10 series:
  Fix Released
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  Mahara: 18.04
  OS: Linux
  DB: Postgres
  Browser: n/a

  
  Cron fails (and is therefore locked) when one of the rss feeds has an invalid 
ssl certificate. 

  The cron job calls lib/web.php::mahara_http_request() from
  blocktype/externalfeed/lib.php::parse_feed()

  
  The following error results:

  [WAR] 63 (lib/web.php:4425) Curl error: 60: SSL certificate problem: unable 
to get local issuer certificate
  Call stack (most recent first):
* log_message("Curl error: 60: SSL certificate problem: unable to...", 8, 
true, true) at /var/www/mahara/htdocs/lib/errors.php:95
* log_warn("Curl error: 60: SSL certificate problem: unable to...") at 
/var/www/mahara/htdocs/lib/web.php:4425
* mahara_http_request(array(size 3), false) at 
/var/www/mahara/htdocs/blocktype/externalfeed/lib.php:421
* 
PluginBlocktypeExternalfeed::parse_feed("http://www.safeworkaustralia.gov.au/sites/SWA/medi...;,
 "0", "", "") at 
/var/www/mahara/htdocs/blocktype/externalfeed/lib.php:336
* PluginBlocktypeExternalfeed::refresh_feeds() at 
/var/www/mahara/htdocs/lib/mahara.php:1809
* call_static_method("PluginBlocktypeExternalfeed", "refresh_feeds") at 
/var/www/mahara/htdocs/lib/cron.php:115

  [WAR] 63 (blocktype/externalfeed/lib.php:336) error in 
/blocktype/externalfeed/lib.php line 428. error:SSL certificate problem: unable 
to get local issuer certificate
  [WAR] 63 (lib/errors.php:536) [Error]: Wrong parameters for 
MaharaException([string $message [, long $code [, Throwable $previous = NULL]]])
  Call stack (most recent first):
* exception(object(Error)) at Unknown:0


  I had added extra debugging statements to see the error:

  [WAR] 63 (blocktype/externalfeed/lib.php:336) error in
  /blocktype/externalfeed/lib.php line 428. error:SSL certificate
  problem: unable to get local issuer certificate

  
  Mahara then raises a MaharaException with the error (SSL certificate problem: 
unable to get local issuer certificate) as the code. But, it's not an integer 
so it fails with:

  [WAR] 63 (lib/errors.php:536) [Error]: Wrong parameters for
  MaharaException([string $message [, long $code [, Throwable $previous
  = NULL]]])

  
  We need to check if the error coming back is a number or string. If number, 
pass it as the code in the MaharaException. Otherwise, append it to the text of 
the error message so the data is not lost.

  
  We found this when upgrading from 17.04 to 18.04. This issue is present in 
17.04 as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1773864/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1774334] Re: Redirecting to wrong adminurl post login

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/17.04
   Status: Fix Committed => Fix Released

** Changed in: mahara/17.10
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1774334

Title:
  Redirecting to wrong adminurl post login

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Released
Status in Mahara 17.10 series:
  Fix Released
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  Hi,

  I have installed Mahara 18041 manually on one of my test servers.
  However I am getting stuck post admin login.

  After installing Mahara 18041 when I try to login into
  http://{domain.com}/{subdirectory}/admin it is redirecting to
  http://{domain.com}/{subdirectory}/ {subdirectory} /admin which is
  giving "404 Not found" error as it is detecting  {subdirectory}
  twice.

  Can anyone help me out why this is happening ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1774334/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1767867] Re: 'Search results for' link in My Tags page not working correctly

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1767867

Title:
  'Search results for' link in My Tags page not working correctly

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Committed
Status in Mahara 17.10 series:
  Fix Committed
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  It sometimes gets confused and tries to create a URL without the ?
  char but only the & char

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1767867/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1773864] Re: ExternalFeed block cron task fails when SSL cert is not valid for a feed

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1773864

Title:
  ExternalFeed block cron task fails when SSL cert is not valid for a
  feed

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Committed
Status in Mahara 17.10 series:
  Fix Committed
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  Mahara: 18.04
  OS: Linux
  DB: Postgres
  Browser: n/a

  
  Cron fails (and is therefore locked) when one of the rss feeds has an invalid 
ssl certificate. 

  The cron job calls lib/web.php::mahara_http_request() from
  blocktype/externalfeed/lib.php::parse_feed()

  
  The following error results:

  [WAR] 63 (lib/web.php:4425) Curl error: 60: SSL certificate problem: unable 
to get local issuer certificate
  Call stack (most recent first):
* log_message("Curl error: 60: SSL certificate problem: unable to...", 8, 
true, true) at /var/www/mahara/htdocs/lib/errors.php:95
* log_warn("Curl error: 60: SSL certificate problem: unable to...") at 
/var/www/mahara/htdocs/lib/web.php:4425
* mahara_http_request(array(size 3), false) at 
/var/www/mahara/htdocs/blocktype/externalfeed/lib.php:421
* 
PluginBlocktypeExternalfeed::parse_feed("http://www.safeworkaustralia.gov.au/sites/SWA/medi...;,
 "0", "", "") at 
/var/www/mahara/htdocs/blocktype/externalfeed/lib.php:336
* PluginBlocktypeExternalfeed::refresh_feeds() at 
/var/www/mahara/htdocs/lib/mahara.php:1809
* call_static_method("PluginBlocktypeExternalfeed", "refresh_feeds") at 
/var/www/mahara/htdocs/lib/cron.php:115

  [WAR] 63 (blocktype/externalfeed/lib.php:336) error in 
/blocktype/externalfeed/lib.php line 428. error:SSL certificate problem: unable 
to get local issuer certificate
  [WAR] 63 (lib/errors.php:536) [Error]: Wrong parameters for 
MaharaException([string $message [, long $code [, Throwable $previous = NULL]]])
  Call stack (most recent first):
* exception(object(Error)) at Unknown:0


  I had added extra debugging statements to see the error:

  [WAR] 63 (blocktype/externalfeed/lib.php:336) error in
  /blocktype/externalfeed/lib.php line 428. error:SSL certificate
  problem: unable to get local issuer certificate

  
  Mahara then raises a MaharaException with the error (SSL certificate problem: 
unable to get local issuer certificate) as the code. But, it's not an integer 
so it fails with:

  [WAR] 63 (lib/errors.php:536) [Error]: Wrong parameters for
  MaharaException([string $message [, long $code [, Throwable $previous
  = NULL]]])

  
  We need to check if the error coming back is a number or string. If number, 
pass it as the code in the MaharaException. Otherwise, append it to the text of 
the error message so the data is not lost.

  
  We found this when upgrading from 17.04 to 18.04. This issue is present in 
17.04 as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1773864/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1774334] Re: Redirecting to wrong adminurl post login

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1774334

Title:
  Redirecting to wrong adminurl post login

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Committed
Status in Mahara 17.10 series:
  Fix Committed
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  Hi,

  I have installed Mahara 18041 manually on one of my test servers.
  However I am getting stuck post admin login.

  After installing Mahara 18041 when I try to login into
  http://{domain.com}/{subdirectory}/admin it is redirecting to
  http://{domain.com}/{subdirectory}/ {subdirectory} /admin which is
  giving "404 Not found" error as it is detecting  {subdirectory}
  twice.

  Can anyone help me out why this is happening ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1774334/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1774309] Re: Getting an Undefined index: QUERY_STRING when logging in

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1774309

Title:
  Getting an Undefined index: QUERY_STRING when logging in

Status in Mahara:
  Fix Committed
Status in Mahara 17.04 series:
  Fix Committed
Status in Mahara 17.10 series:
  Fix Committed
Status in Mahara 18.04 series:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  If trying to access a page requiring login the system remembers the
  path (QUERY_STRING) you were trying to access. So when login is
  successful it will redirect to that page.

  But if you login from the homepage there can be no QUERY_STRING to
  redirect to

  Noticed when doing behat tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1774309/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1775479] Re: obsolete code for displaying comments

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara
Milestone: None => 18.10.0

** Also affects: mahara/17.04
   Importance: Undecided
   Status: New

** Also affects: mahara/18.04
   Importance: Undecided
   Status: New

** Also affects: mahara/17.10
   Importance: Undecided
   Status: New

** Changed in: mahara/17.04
Milestone: None => 17.04.10

** Changed in: mahara/17.10
Milestone: None => 17.10.7

** Changed in: mahara/18.04
Milestone: None => 18.04.3

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1775479

Title:
  obsolete code for displaying comments

Status in Mahara:
  New
Status in Mahara 17.04 series:
  New
Status in Mahara 17.10 series:
  New
Status in Mahara 18.04 series:
  New

Bug description:
  We have old code not used anymore for displaying comment list from a text note
  in view/view.php ln 308

  It was added in commit e03327b0f68d6c7bc40cd04cfed441f42b802ba3 in
  15.04

  for 
"Adjusting the textbox so it can show/hide comments (Bug #1037531)
  
  The comments will be displayed (or hidden) below the block by clicking
  on the 'Comments (x)' link. There is also a 'close' link at the bottom
  of the comment list as well to close them."

  We don't use this anymore since now, when clicking on coment(x) link,
  they are displayed in a right side modal panel.

  We have to check what other obsolete related code we need to clean.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1775479/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1775538] Re: An admin should be able to send e-mail to selected users

2018-06-10 Thread Kristina Hoeppner
Currently, an admin can send messages to multiple people. However,
everyone would see who'd also received that message, which would not
comply with privacy (DSVGO above is the Germany data privacy
regulation).

** Changed in: mahara
   Status: New => Confirmed

** Changed in: mahara
   Importance: Undecided => Wishlist

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1775538

Title:
  An admin should be able to send e-mail to selected users

Status in Mahara:
  Confirmed

Bug description:
  In order to comply with the DSVGO users have to be regularly deleted, if they 
have been inactive for more than a year. Before they should be informed by 
e-mail (including how they can prevent the deletion).
  An Admin is able to delete, but not to inform a set of selected users (like 
in moodle).

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1775538/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1775102] Re: warning for an empty collection with tags

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara
Milestone: 18.04.2 => 18.04.3

** Changed in: mahara/17.10
Milestone: 17.10.6 => 17.10.7

** Changed in: mahara/17.04
Milestone: 17.04.9 => 17.04.10

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1775102

Title:
  warning for an empty collection with tags

Status in Mahara:
  New
Status in Mahara 17.04 series:
  New
Status in Mahara 17.10 series:
  New

Bug description:
  To replicate
  - Create a collection with a tag and don't add any pages to it
  - go to tags.php

  the following warning is displayed:

  
  [WAR] 75 (lib/collection.php:1084) Attempting to get url for an empty 
collection
  Call stack (most recent first):

  log_message("Attempting to get url for an empty collection", 8, true, 
true) at /home/ceciliavg/maharacode/mahara/htdocs/lib/errors.php:95
  log_warn("Attempting to get url for an empty collection") at 
/home/ceciliavg/maharacode/mahara/htdocs/lib/collection.php:1084
  Collection->get_url() at 
/home/ceciliavg/maharacode/mahara/htdocs/lib/mahara.php:4518
  build_portfolio_search_html(object(stdClass)) at 
/home/ceciliavg/maharacode/mahara/htdocs/tags.php:31

  this happens in 17.10/18.04/17.04 - not on master

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1775102/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1774554] Re: Need to throw correct error in Webservices user delete

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
Milestone: 18.04.2 => 18.04.3

** Changed in: mahara/17.10
Milestone: 17.10.6 => 17.10.7

** Changed in: mahara/17.04
Milestone: 17.04.9 => 17.04.10

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1774554

Title:
  Need to throw correct error in Webservices user delete

Status in Mahara:
  In Progress
Status in Mahara 17.04 series:
  In Progress
Status in Mahara 17.10 series:
  In Progress
Status in Mahara 18.04 series:
  In Progress
Status in Mahara 18.10 series:
  In Progress

Bug description:
  Currently we are throwing a MaharaException incorrectly for a couple
  of rules

  We should be throwing a WebserviceInvalidParameterException instead

  Noticed due to this bug report
  https://bugs.launchpad.net/mahara/+bug/1773864

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1774554/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1775101] Re: sorting tags in tags.php changes style of the tags list

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
Milestone: 18.04.2 => 18.04.3

** Changed in: mahara/17.10
Milestone: 17.10.6 => 17.10.7

** Changed in: mahara/17.04
Milestone: 17.04.9 => 17.04.10

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1775101

Title:
  sorting tags in tags.php changes style of the tags list

Status in Mahara:
  New
Status in Mahara 17.04 series:
  New
Status in Mahara 17.10 series:
  New
Status in Mahara 18.04 series:
  New

Bug description:
  
  In tags.php, on top of the results, there is a list of tag links. When first 
loading the page each of those links are wrapped by a  
element.
   
  Clicking on "Sort tags alphabetically" or "Sort tags by frequency" removes 
the li elements leaving only the list of links, making the style look different.

  see screenshots attached

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1775101/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1775103] Re: broken js in "general settings" from site options

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
Milestone: 18.04.2 => 18.04.3

** Changed in: mahara/17.10
Milestone: 17.10.6 => 17.10.7

** Changed in: mahara/17.04
Milestone: 17.04.9 => 17.04.10

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1775103

Title:
  broken js in "general settings" from site options

Status in Mahara:
  New
Status in Mahara 17.04 series:
  New
Status in Mahara 17.10 series:
  New
Status in Mahara 18.04 series:
  New

Bug description:
  In Admin menu -> Configure site -> Site options-> General settings,
  the first time we load the page clicking on the "Allow public pages"
  switch doesn't update "Allow public profiles" switch.

  To test

  Go to site options
  Reload the page
  go to general settings and click on "Allow public pages" switch

  it should update "Allow public profiles" switch but it doesn't.

  Save the form and try again without reloading the page.
  Now it works properly, clicking on "Allow public pages" updates "Allow public 
profiles" switch.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1775103/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1749039] Re: Updating view access does not update view mtime even though changing access is a change to the view

2018-06-10 Thread Cecilia Vela Gurovic
** Changed in: mahara/18.04
Milestone: 18.04.2 => 18.04.3

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1749039

Title:
  Updating view access does not update view mtime even though changing
  access is a change to the view

Status in Mahara:
  Confirmed
Status in Mahara 18.04 series:
  Confirmed
Status in Mahara 18.10 series:
  Confirmed

Bug description:
  If we
  - have a collection of views
  - edit the access of a views in shared by me page
  - edit the access of a view from the view edit page

  The last modified time of the view does not update.

  Changing a view's access is a modification of the view in the sense
  that more/less people can see the view.

  We need to update the view's mtime to the same date as the view access
  ctime.

  Not doing so causes problems for advanced reporting where we find
  things via viewaccess time but display view mtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1749039/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp