Author: jleroux
Date: Wed May 15 05:58:31 2019
New Revision: 1859263

URL: http://svn.apache.org/viewvc?rev=1859263&view=rev
Log:
Fixed: Unknown request [images]; this request does not exist or cannot be 
called directly.
(OFBIZ-10895)

This error happens in many occasions.
It shows only in log and have no effect on UI.
It happens in all supported releases. 
So it's not very bad since it's has no side effects.

As said Deepak Dixit:
I think we need to fix the image url in css file, it should start with /images, 
else browser append this in request info. There is nothing related to java or 
tomcat code. 

This is a commit in HR

Thanks: Deepak 

Modified:
    
ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css

Modified: 
ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css?rev=1859263&r1=1859262&r2=1859263&view=diff
==============================================================================
--- 
ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css
 Wed May 15 05:58:31 2019
@@ -20,20 +20,20 @@
 /* THE CUSTOM CSS FOR AJUST THE HR TREE */
 .jstree-0 li[rel="Y"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url("Drawer_Closed.png");
+    background-image:url("\images\Drawer_Closed.png");
 }
 
 .jstree-0 li[rel="N"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url("Users.png");
+    background-image:url(""\Users.png");
 }
 
 .jstree-0 li[rel="P"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url("User.png");
+    background-image:url("\images\User.png");
 }
 
 .jstree-0 li[rel="C"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url("Home.png");
+    background-image:url("\images\Home.png");
 }
\ No newline at end of file


Reply via email to