Development

Changeset 16555

You must first sign up to be able to contribute.

Changeset 16555

Show
Ignore:
Timestamp:
03/24/09 18:41:32 (4 years ago)
Author:
Kris.Wallsmith
Message:

[1.2, 1.3] Removed extra slash from web debug image root

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.2/lib/log/sfWebDebugLogger.class.php

    r13373 r16555  
    9595 
    9696    $webDebug = new $this->webDebugClass($this->dispatcher, $this, array( 
    97       'image_root_path' => ($request->getRelativeUrlRoot() ? $request->getRelativeUrlRoot().'/' : '').sfConfig::get('sf_web_debug_web_dir').'/images') 
    98     )
     97      'image_root_path' => ($request->getRelativeUrlRoot() ? $request->getRelativeUrlRoot() : '').sfConfig::get('sf_web_debug_web_dir').'/images', 
     98    ))
    9999 
    100100    return $webDebug->injectToolbar($content); 
  • branches/1.3/lib/log/sfWebDebugLogger.class.php

    r14601 r16555  
    143143 
    144144    $webDebug = new $this->webDebugClass($this->dispatcher, $this, array( 
    145       'image_root_path' => ($request->getRelativeUrlRoot() ? $request->getRelativeUrlRoot().'/' : '').sfConfig::get('sf_web_debug_web_dir').'/images') 
    146     )
     145      'image_root_path' => ($request->getRelativeUrlRoot() ? $request->getRelativeUrlRoot() : '').sfConfig::get('sf_web_debug_web_dir').'/images', 
     146    ))
    147147 
    148148    return $webDebug->injectToolbar($content);