Skip to content

Commit e7ccd22

Browse files
committed
minor symfony#25441 fixed symfony#25440 (ptomulik)
This PR was merged into the 3.3 branch. Discussion ---------- fixed symfony#25440 | Q | A | ------------- | --- | Branch? | master for features / 2.7 up to 4.0 for bug fixes <!-- see below --> | Bug fix? | yes | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | yes/no | Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> | Tests pass? | yes/no | Fixed tickets | #... <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | symfony/symfony-docs#... <!--highly recommended for new features--> Fixes symfony#25440 Commits ------- 089981e fixed symfony#25440
2 parents 7b35c2d + 089981e commit e7ccd22

File tree

1 file changed

+1
-1
lines changed
  • src/Symfony/Component/Ldap/Adapter/ExtLdap

1 file changed

+1
-1
lines changed

src/Symfony/Component/Ldap/Adapter/ExtLdap/Query.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function execute()
7373
$func = 'ldap_search';
7474
break;
7575
default:
76-
throw new LdapException(sprintf('Could not search in scope %s', $this->options['scopen']));
76+
throw new LdapException(sprintf('Could not search in scope "%s"', $this->options['scope']));
7777
}
7878

7979
$this->search = @$func(

0 commit comments

Comments
 (0)