1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-09 02:10:06 +00:00

fix: base_uri missing

This commit is contained in:
vrh
2020-09-03 16:06:47 +02:00
parent 029c1a29ed
commit 8d9b84037c
2 changed files with 2 additions and 2 deletions

View File

@@ -9744,7 +9744,7 @@ options noquotelenmax;
data _null_; data _null_;
set &libref1..links; set &libref1..links;
if rel='createChild' then if rel='createChild' then
call symputx('href',quote(trim(href)),'l'); call symputx('href',quote("&base_uri"!!trim(href)),'l');
run; run;
%end; %end;
%else %if &SYS_PROCHTTP_STATUS_CODE=404 %then %do; %else %if &SYS_PROCHTTP_STATUS_CODE=404 %then %do;

View File

@@ -96,7 +96,7 @@ options noquotelenmax;
data _null_; data _null_;
set &libref1..links; set &libref1..links;
if rel='createChild' then if rel='createChild' then
call symputx('href',quote(trim(href)),'l'); call symputx('href',quote("&base_uri"!!trim(href)),'l');
run; run;
%end; %end;
%else %if &SYS_PROCHTTP_STATUS_CODE=404 %then %do; %else %if &SYS_PROCHTTP_STATUS_CODE=404 %then %do;