Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Compare: (<)V:MagentoMagento 1.6Changes20150217 Patches5346Http.php (15698 bytes)
  2. with: (>)V:MagentoMagento 1.6Changes20150217 Patches5346Http.php.old (15031 bytes)
  3.  
  4. 79,85d79
  5. < * Flag for recognizing if request internally forwarded
  6. < *
  7. < * @var bool
  8. < */
  9. < protected $_internallyForwarded = false;
  10. <
  11. < /**
  12. 540,562d533
  13. <
  14. < /**
  15. < * Define that request was forwarded internally
  16. < *
  17. < * @param boolean $flag
  18. < * @return Mage_Core_Controller_Request_Http
  19. < */
  20. < public function setInternallyForwarded($flag = true)
  21. < {
  22. < $this->_internallyForwarded = (bool)$flag;
  23. < return $this;
  24. < }
  25. <
  26. < /**
  27. < * Checks if request was forwarded internally
  28. < *
  29. < * @return bool
  30. < */
  31. < public function getInternallyForwarded()
  32. < {
  33. < return $this->_internallyForwarded;
  34. < }
  35. <
  36.  
  37. grep "_internallyForwarded" app/code/core/Mage/Core/Controller/Request/Http.php
  38.  
  39. public_html$ grep "_internallyForwarded" app/code/core/Mage/Core/Controller/Request/Http.php
  40. protected $_internallyForwarded = false;
  41. $this->_internallyForwarded = (bool)$flag;
  42. return $this->_internallyForwarded;
  43.  
  44. app/code/core/Mage/Admin/Model/Observer.php
  45. app/code/core/Mage/Core/Controller/Request/Http.php
  46. lib/Varien/Db/Adapter/Pdo/Mysql.php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement