php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #18949 ITX: Minor mistake in 'placeholderExists()' ?
Submitted: 2002-08-16 16:46 UTC Modified: 2005-09-02 10:16 UTC
From: heino at gehlsen dot dk Assigned:
Status: Closed Package: *General Issues
PHP Version: CVS (rev. 1.5) OS: Debian 3.0
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: heino at gehlsen dot dk
New email:
PHP Version: OS:

 

 [2002-08-16 16:46 UTC] heino at gehlsen dot dk
I can't get placeholderExists() to work without making minor changes to the code:

[...]
while (list($k, $variable) = each($variables)) 
-    if ($variable == $placeholder) {
+    if ($k == $placeholder) {
        $found = $block;
[...]

(boolean) $variable != (string) $placeholder.
(string) $k = (string) $placeholder.

PS.
I don't have the time to check if it's placeholderExists() that is buggy or if it is $this->blockvariables' - sorry...

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-08-23 06:58 UTC] mj@php.net
This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.


 [2002-08-23 08:38 UTC] heino at gehlsen dot dk
This bug was kind of a double-bug, since the same typo was made two times in the same function ? both when $block is empty (fixed) and when it is set (not fixed).

Sorry for the lack of detail...
 [2005-09-02 08:40 UTC] sniper@php.net
No idea what this was about, assuming PEAR and it has it's own bug system.

 [2005-09-02 10:16 UTC] heino@php.net
Now that was an old bugger.

Yes, it's PEAR-related (HTML_Template_IT), and was actually fixed back in 2002, so it should of cause have been reclosed.

PS
PEAR had its own category in PHP's bug system back then...
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 07:01:27 2024 UTC