Skip to content

Commit

Permalink
Removing the Registered rademark character form eduroam profiles name…
Browse files Browse the repository at this point in the history
… in Windows
  • Loading branch information
Tomasz Wolniewicz committed Jul 8, 2024
1 parent 007f3de commit 3ea6a46
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Changes in 2.1.2
your instance following the Diagnostics-template.php
- [FEATURE #14] Improvemens to the linux python installed, in particular add support
for Tkinker and yad provided by https://github.com/sdasda7777
- [FEATURE #15] Removing the Registered Trademark character form the eduroam profile
name in Windows
- [BUGFIX #1] multiple improvements to the code, in particular eliminating
the deprecated FILTER_SANITIZE_STRING usage
- [BUGFIX #2] replaced slow SQL queries in Managed IdP area with much faster ones
Expand Down
2 changes: 1 addition & 1 deletion config/ConfAssistant-template.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class ConfAssistant
'interworking-consortium-oi' => ['001bc50460'],
'interworking-domainname-fallback' => 'eduroam.org',
'networks' => [
'eduroam®' => [
'eduroam' => [
'ssid' => ['eduroam'],
'oi' => [
'001bc50460' /* eduroam RCOI */
Expand Down
3 changes: 3 additions & 0 deletions devices/ms/DeviceW8W10.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ public function writeInstaller()
$delProfiles[] = $ssid.' (TKIP)';
}
}
// the two lines below remove the eduroam® profiles we used to install, this is a temporary hack untill a better solution is implemented
$delProfiles[] = 'eduroam®';
$delProfiles[] = 'eduroam® via partner';
// this removes the profile container that we used in CAT 2.1 and removed in 2.1.1
$delProfiles[] = sprintf('%s Custom Network', \core\CAT::$nomenclature_participant);
$this->writeAdditionalDeletes($delProfiles);
Expand Down

0 comments on commit 3ea6a46

Please sign in to comment.